
.kazanilabilir-rozetler {
    padding: 8px 14px;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    margin: 10px auto;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

/* 1048px ve altı için scroll aktif */
@media (max-width: 1048px) {
  .kazanilabilir-rozetler {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    align-items: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .kazanilabilir-rozetler::-webkit-scrollbar {
    height: 6px;
  }

  .kazanilabilir-rozetler::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
  }
}

/* Sadece mobilde yatay scroll */
@media (max-width: 768px) {
    .kazanilabilir-rozetler {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        justify-content: flex-start;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .kazanilabilir-rozetler > * {
        flex: 0 0 auto;
    }
}

    .kazanilabilir-rozetler::-webkit-scrollbar {
        display: none;
    }
    .kazanilabilir-rozetler .rozet-link {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border-radius: 16px;
        padding: 0;
        min-width: unset;
        min-height: unset;
        box-shadow: none;
        border: none;
        transition: transform 0.18s, box-shadow 0.22s;
    }
    .kazanilabilir-rozetler .rozet-link:hover .rozet-bg {
        box-shadow: 0 8px 32px 0 rgba(30, 34, 60, 0.22), 0 2px 8px 0 rgba(0,0,0,0.13);
        background: rgba(60, 65, 90, 0.98);
        transform: translateY(-3px) scale(1.06);
    }
    .rozet-bg {
        position: relative;
        min-width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        scroll-snap-align: center;
        cursor: pointer;
        flex-shrink: 0;
        transition: transform 0.2s;
    }
    .rozet-bg.pasif {
        opacity: 0.45;
    }
    .kazanilabilir-rozetler .rozet-img {
        width: 40px;
        height: 40px;
        image-rendering: pixelated;
        border-radius: 8px;
        
        display: block;
    }
    .rozet-tooltip {
        display: none;
        min-width: 120px;
        max-width: 220px;
        background: rgba(30, 30, 40, 0.98);
        color: #fff;
        text-align: center;
        border-radius: 8px;
        padding: 6px 10px;
        position: absolute;
        left: 50%;
        bottom: 110%;
        transform: translateX(-50%);
        z-index: 10;
        font-size: 12px;
        font-family: Poppins, sans-serif;
        box-shadow: 0 4px 24px 0 rgba(30, 34, 60, 0.18);
        white-space: pre-line;
    }
    .rozet-bg:hover .rozet-tooltip {
        display: block;
    }
    .rozet-tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 7px;
        border-style: solid;
        border-color: rgba(30, 30, 40, 0.98) transparent transparent transparent;
    }
    @media (max-width: 600px) {
        .kazanilabilir-rozetler {
            gap: 7px;
            padding: 18px 4px;
            overflow-x: auto;
            flex-wrap: nowrap;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .kazanilabilir-rozetler::-webkit-scrollbar {
            display: none;
        }
        .rozet-bg {
            width: 44px;
            height: 44px;
            border-radius: 10px;
        }
        .kazanilabilir-rozetler .rozet-img {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            image-rendering: pixelated;
        }
        .rozet-tooltip {
            display: none;
        }
        .rozet-tooltip::after {
            display: none;
        }
        .rozet-bg:active .rozet-tooltip {
            display: none;
        }
    }