/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    min-height: 100vh;
    padding-top: 170px;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header__inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 70px;
    padding: 0 28px;
    background: #111118;
    border-radius: 0 0 18px 18px;
}

/* Logo */
.header__logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: filter 0.2s;
}

.header__logo:hover img {
    filter: brightness(0.6);
}

/* Navigation */
.header__nav {
    position: absolute;
    left: 42%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 2px;
}

.header__nav-link {
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #8a8a9a;
    transition: color 0.2s, filter 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-icon {
    height: 2em;
    width: auto;
}

.header__nav-link:hover {
    color: #ffffff;
    filter: brightness(0.6);
}

.header__nav-link.active {
    color: #ffffff;
}

/* Right actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Balance */
.balance {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.balance__amount {
    font-size: 15px;
    font-weight: 700;
    color: #f5c842;
}

.balance__currency {
    font-size: 15px;
    font-weight: 700;
    color: #f5c842;
}

/* Gold button */
.btn-gold {
    padding: 11.2px 27.1px;
    font-size: 14.7px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f5c842, #ff6b35);
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(245, 200, 66, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(245, 200, 66, 0.4);
}

.btn-gold:active {
    transform: translateY(0);
}

/* Gold icon button */
.btn-icon-gold {
    width: auto;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5c842, #ff6b35);
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(245, 200, 66, 0.3);
}

.btn-icon-gold img {
    width: 20px;
    height: 20px;
}

.btn-icon-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(245, 200, 66, 0.4);
}

.btn-icon-gold:active {
    transform: translateY(0);
}

/* Deposit button (header) */
.btn-deposit {
    padding: 9px 14px;
    font-size: 11.5px;
    font-weight: 700;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f5c842, #ff6b35);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(245, 200, 66, 0.25);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.3px;
}

.btn-deposit__icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-deposit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 200, 66, 0.4);
}

.btn-deposit:active {
    transform: translateY(0);
}

/* ===== LIVE DROPS CONVEYOR ===== */
.live-drops {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    width: 100%;
    background: #0d0d14;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.live-drops__panel {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100px;
    height: 100px;
    background: #111118;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
}

.live-drops__online {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #4ade80;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 4px;
    white-space: nowrap;
    border-radius: 0 12px 0 0;
}

.live-drops__online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.live-drops__filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #8a8a9a;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    margin: 2px;
}

.live-drops__filter-btn:hover {
    background: rgba(255,255,255,0.05);
}

.live-drops__filter-btn.active {
    color: #f5c842;
    background: rgba(245,200,66,0.1);
}

.live-drops__track {
    display: flex;
    gap: 6px;
    margin-left: 106px;
    padding-right: 8px;
    will-change: transform;
    transition: transform 0.4s linear;
}

.live-drops__card {
    flex-shrink: 0;
    width: 80px;
    height: 92px;
    background: #15151f;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.live-drops__card.drop-in {
    animation: cardDropIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes cardDropIn {
    0% {
        transform: translateY(-100px) scale(0.7);
        opacity: 0;
    }
    60% {
        transform: translateY(4px) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.live-drops__card:hover {
    transform: scale(1.1);
    z-index: 5;
}

.live-drops__card-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    border-radius: 0 0 8px 8px;
    opacity: 0.5;
    pointer-events: none;
}

.live-drops__card-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    margin-bottom: 1px;
}

.live-drops__card-name {
    font-size: 7px;
    font-weight: 600;
    color: #aaa;
    max-width: 74px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.live-drops__card-price {
    font-size: 9px;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 3px;
    position: relative;
    z-index: 1;
}

/* Hover overlay with avatar */
.live-drops__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,15,0.88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
    border-radius: 8px;
}

.live-drops__card:hover .live-drops__card-overlay {
    opacity: 1;
}

.live-drops__card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #f5c842;
    object-fit: cover;
}

.live-drops__card-user {
    font-size: 8px;
    font-weight: 600;
    color: #ddd;
    max-width: 56px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

/* ===== MAIN CONTENT ===== */
.main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px;
}

.banner {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
}

/* Slider */
.slider {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__track {
    display: flex;
    gap: 16px;
    overflow: hidden;
    max-width: 1200px;
    scroll-behavior: smooth;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    padding: 0 20px;
}

.slider__item {
    min-width: 370px;
    height: 260px;
    border-radius: 16px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.slider__subscribe-btn {
    position: absolute;
    bottom: 28px;
    left: 16px;
    padding: 12px 32px;
    background: #fff;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: transform 0.15s, box-shadow 0.2s;
    z-index: 2;
}

.slider__subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

/* Promo code on PROCENT banner */
.slider__promo {
    position: absolute;
    bottom: 28px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 2;
}

.slider__promo-copy {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px 0 0 8px;
    background: #e53935;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.slider__promo-copy:hover {
    background: #ef5350;
}

.slider__promo-copy img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
}

.slider__promo-code {
    height: 44px;
    padding: 0 24px;
    background: #e53935;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
}

/* Purple variant for BALANCE banner */
.slider__promo-copy--purple {
    background: #7b2fbe;
}

.slider__promo-copy--purple:hover {
    background: #9341d6;
}

.slider__promo-code--purple {
    background: #7b2fbe;
}

/* Orange variant for SKIN banner */
.slider__promo-copy--orange {
    background: #e67e22;
}

.slider__promo-copy--orange:hover {
    background: #f39c12;
}

.slider__promo-code--orange {
    background: #e67e22;
}

.slider__item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.slider__btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    backdrop-filter: blur(4px);
}

.slider__btn--left {
    left: calc(50% - 600px + 16px);
}

.slider__btn--right {
    right: calc(50% - 600px + 16px);
}

.slider__btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.banner img {
    width: 30vw;
    height: auto;
    border-radius: 12px;
}

/* Cases Grid */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 230px);
    justify-content: center;
    gap: 24px;
    margin-top: -80px;
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.cases-grid .case-card {
    max-width: 230px;
    overflow: hidden;
}

.cases-grid + .cases-grid {
    margin-top: 40px;
}

.cases-grid--rainbow {
    margin-top: 60px;
    position: relative;
}

.cases-grid--collection {
    margin-top: 60px;
    position: relative;
}

/* VIP-style banner logo — centered above cases */
.collection-banner {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0;
}

.collection-banner + .cases-grid {
    margin-top: -30px;
}

.collection-banner img {
    width: 34vw;
    max-width: 440px;
    min-width: 220px;
    height: auto;
}

.collection-logo {
    height: 56px;
    width: auto;
}

.collection-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 4px;
}

.collection-title {
    font-size: 13.2px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.case-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.case-card img {
    width: 230px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.2s, filter 0.2s;
}

.case-card__img-wrap {
    position: relative;
    display: inline-block;
}

.case-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    background: #e74c3c;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.case-card__badge--hot {
    background: #f39c12;
}

.case-card--soon {
    opacity: 0.55;
    pointer-events: none;
    cursor: default;
}

.case-card__badge--soon {
    background: #7f8c8d;
}

.case-card__badge--vip {
    background: linear-gradient(135deg, #ffd700, #f0a500);
    color: #1a1a1a;
}

.case-card img:hover {
    transform: scale(1.05);
}

.case-card__name {
    font-size: 15.6px;
    color: #ffffff;
    font-weight: 500;
}

.case-card__price {
    padding: 6px 16px;
    background: linear-gradient(135deg, #f5c842, #ff6b35);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    transition: transform 0.2s, box-shadow 0.3s, filter 0.2s;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(245, 200, 66, 0.25);
}

.case-card__price:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(245, 200, 66, 0.4);
}

.cases-section {
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #f5c842, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: #8a8a9a;
    font-weight: 400;
}

/* ===== LOGIN MODAL ===== */
.login-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.login-overlay.active {
    display: flex;
}

.login-modal {
    position: relative;
    background: #1a1a24;
    border: 1px solid rgba(245, 200, 66, 0.2);
    border-radius: 22px;
    padding: 48px 58px;
    text-align: center;
    min-width: 432px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

.login-modal__close {
    position: absolute;
    top: 14px;
    right: 19px;
    background: none;
    color: #666;
    font-size: 31px;
    line-height: 1;
    transition: color 0.2s;
}

.login-modal__close:hover {
    color: #fff;
}

.login-modal__title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.6px;
}

.login-modal__subtitle {
    font-size: 17px;
    font-weight: 500;
    color: #888;
    margin-bottom: 34px;
}

.login-modal__steam-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f5c842, #ff6b35);
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(245, 200, 66, 0.3);
    letter-spacing: 0.3px;
}

.login-modal__steam-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 200, 66, 0.5);
}

.login-modal__steam-btn:active {
    transform: translateY(0);
}

.login-modal__steam-icon {
    width: 29px;
    height: 29px;
}

/* ===== ADMIN LOGIN (inside login modal) ===== */
.admin-login-trigger {
    margin-top: 18px;
    font-size: 11px;
    color: #3a3a4a;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    user-select: none;
}

.admin-login-trigger:hover {
    color: #5a5a6a;
}

.admin-login-form {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    width: 100%;
    max-width: 320px;
}

.admin-login-form.active {
    display: flex;
}

.admin-login-form__input {
    padding: 10px 14px;
    background: #0d0d14;
    border: 2px solid #1e1e2e;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s;
}

.admin-login-form__input:focus {
    border-color: #f5c842;
}

.admin-login-form__input::placeholder {
    color: #4a4a5a;
}

.admin-login-form__btn {
    padding: 10px 20px;
    background: #2a2a3a;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.5px;
}

.admin-login-form__btn:hover {
    background: #3a3a4a;
}

.admin-login-form__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.admin-login-form__error {
    font-size: 12px;
    color: #ef4444;
    min-height: 16px;
}

/* ===== ADMIN 2FA ===== */
.admin-2fa {
    text-align: center;
    padding: 8px 0 4px;
    animation: admin2faAppear 0.3s ease;
}
@keyframes admin2faAppear {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.admin-2fa__shield {
    font-size: 28px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.admin-2fa__title {
    font-size: 12px;
    font-weight: 700;
    color: #ccc;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}
.admin-2fa__desc {
    font-size: 11px;
    color: #555;
    margin-bottom: 14px;
}
.admin-2fa__desc strong {
    color: #29b6f6;
}

.admin-2fa__code-wrap {
    margin-bottom: 10px;
}
.admin-2fa__input {
    width: 100%;
    text-align: center;
    font-size: 22px;
    letter-spacing: 8px;
    font-weight: 700;
    padding: 10px 14px;
    background: #0d0d14;
    border: 2px solid #1e1e2e;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.admin-2fa__input:focus {
    border-color: #f5c842;
}
.admin-2fa__input::placeholder {
    color: #2a2a3a;
    letter-spacing: 6px;
    font-size: 18px;
}

.admin-2fa__btn {
    width: 100%;
    padding: 10px 20px;
    background: #2a2a3a;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-family: inherit;
    transition: background 0.2s;
}
.admin-2fa__btn:hover {
    background: #3a3a4a;
}
.admin-2fa__btn:active {
    background: #252535;
}
.admin-2fa__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.admin-2fa__divider {
    height: 1px;
    background: #1a1a2a;
    margin: 10px 0 6px;
}

.admin-2fa__timer {
    font-size: 11px;
    color: #555;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.admin-2fa__resend {
    display: inline-block;
    background: none;
    border: none;
    color: #555;
    font-size: 11px;
    cursor: pointer;
    padding: 4px 0;
    font-family: inherit;
    transition: color 0.2s;
}
.admin-2fa__resend:hover {
    color: #999;
}
.admin-2fa__resend:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ===== HEADER AVATAR ===== */
.header__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(245, 200, 66, 0.6);
    box-shadow: 0 0 12px rgba(245, 200, 66, 0.25);
    transition: transform 0.15s, box-shadow 0.2s;
}

.header__avatar:hover {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(245, 200, 66, 0.45);
}

.header__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== NOTIFICATION BUTTON ===== */
.header__notif-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s;
}
.header__notif-btn:hover {
    transform: scale(1.12);
}
.header__notif-badge {
    position: absolute;
    top: 2px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(239,68,68,0.6);
}

/* ===== FOOTER ===== */
.footer {
    background: #0d0d14;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 0 0;
    margin-top: 60px;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer__desc {
    color: #6b6b80;
    font-size: 13px;
    line-height: 1.6;
    max-width: 280px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__heading {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.footer__link {
    color: #6b6b80;
    font-size: 13px;
    transition: color 0.2s;
}

.footer__link:hover {
    color: #f5c842;
}

.footer__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer__stat-value {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #f5c842, #e0a812);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer__stat-label {
    font-size: 12px;
    color: #6b6b80;
    letter-spacing: 0.5px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: #3a3a4a;
    font-size: 12px;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: #0a0a0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 9999;
    transition: opacity 0.45s ease;
}

.preloader--hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader__logo {
    height: 104px;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(245, 200, 66, 0.25));
}

.preloader__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-top-color: #fff;
    border-radius: 50%;
    animation: preloaderSpin 0.75s linear infinite;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

/* ===== SETTINGS PANEL ===== */
.settings-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}

.settings-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.settings-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: 380px;
    background: #15151f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    z-index: 501;
    display: flex;
    flex-direction: column;
    padding: 28px 28px;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 200, 66, 0.06);
}

.settings-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.settings-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.settings-panel__title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.settings-panel__close {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #8a8a9a;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
}

.settings-panel__close:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.settings-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.settings-section__label {
    font-size: 11px;
    font-weight: 700;
    color: #5a5a6a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.settings-volume {
    display: flex;
    align-items: center;
    gap: 12px;
}

.settings-volume__slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
}

.settings-volume__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f5c842;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(245, 200, 66, 0.4);
    margin-top: -6px;
}

.settings-volume__slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f5c842;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(245, 200, 66, 0.4);
}

.settings-volume__slider::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
}

.settings-volume__pct {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    min-width: 42px;
    text-align: right;
}

.settings-currency {
    position: relative;
}

/* Animation toggle */
.settings-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.settings-toggle__label {
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
}

.settings-toggle__switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.25s;
    flex-shrink: 0;
}

.settings-toggle__switch.active {
    background: #f5c842;
}

.settings-toggle__switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.25s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.settings-toggle__switch.active::after {
    transform: translateX(20px);
}

.settings-currency__btn {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s;
}

.settings-currency__btn:hover {
    border-color: rgba(245, 200, 66, 0.4);
}

.settings-currency__arrow {
    font-size: 10px;
    color: #5a5a6a;
    transition: transform 0.3s;
}

.settings-currency__btn.open .settings-currency__arrow {
    transform: rotate(180deg);
}

.settings-currency__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #1a1a24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 10;
}

.settings-currency__dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.settings-currency__option {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-currency__option:hover {
    background: rgba(245, 200, 66, 0.08);
    color: #f5c842;
}

.settings-currency__option.active {
    color: #f5c842;
    background: rgba(245, 200, 66, 0.06);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 600;
    background: #15151f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner__text {
    font-size: 13px;
    color: #8a8a9a;
    line-height: 1.5;
    max-width: 600px;
}

.cookie-banner__text a {
    color: #f5c842;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
    color: #ffd866;
}

.cookie-banner__btn {
    flex-shrink: 0;
    padding: 10px 28px;
    background: linear-gradient(135deg, #f5c842, #ff6b35);
    color: #0a0a0f;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
}

.cookie-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 200, 66, 0.3);
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(6px);
}

.age-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.age-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: 380px;
    max-width: 92vw;
    background: #15151f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    z-index: 701;
    padding: 36px 30px 28px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 200, 66, 0.06);
}

.age-modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.age-modal__icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: #f5c842;
    font-weight: 800;
}

.age-modal__title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.age-modal__text {
    font-size: 13px;
    color: #8a8a9a;
    line-height: 1.6;
    margin-bottom: 24px;
}

.age-modal__btn {
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(135deg, #f5c842, #ff6b35);
    color: #0a0a0f;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    text-transform: uppercase;
}

.age-modal__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(245, 200, 66, 0.4);
}

.age-modal__links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.age-modal__links a {
    font-size: 11px;
    color: #5a5a6a;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.age-modal__links a:hover {
    color: #f5c842;
}

.age-modal__links span {
    font-size: 11px;
    color: #3a3a4a;
}
