/* ============================================
   INDEX.CSS — Luxury Casino Theme (Index Page)
   ============================================ */

/* ── Hero ── */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.8) 0%, rgba(5, 12, 22, 1) 100%);
}

.hero .container {
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 55% 55% at 55% 35%, rgba(201, 162, 39, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 25% 65%, rgba(185, 28, 28, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-split {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    align-items: center;
    justify-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-top: 1.2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--red-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 520px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    border: none;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
    color: var(--navy-dark);
    filter: brightness(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(201, 162, 39, 0.25);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.animate-pulse-btn {
    animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: var(--shadow-gold);
    }

    50% {
        box-shadow: 0 0 35px rgba(201, 162, 39, 0.6), 0 0 60px rgba(185, 28, 28, 0.2);
    }
}

.hero-stats {
    flex-wrap: wrap;
}

.stat-item {
    position: relative;
    padding-left: 1rem;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

/* ── Hero Visual / Floating Card ── */
.hero-visual {
    justify-content: center;
    align-items: center;
}

.floating-glass-card {
    background: rgba(15, 31, 54, 0.85);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(201, 162, 39, 0.12);
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
}

.floating-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(201, 162, 39, 0.05) 60deg, transparent 120deg);
    animation: card-rotate 12s linear infinite;
}

@keyframes card-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.glass-header {
    position: relative;
    z-index: 1;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
}

.pulse-animation {
    animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

/* ── Game Features Section ── */
.game-features {
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.dark-panel-bg {
    background: rgba(15, 31, 54, 0.6);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-xl);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.dark-panel-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
}

.section-header {
    margin-bottom: 3rem;
}

/* Games Section Header */
.games-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.games-header-left .section-prefix {
    margin-bottom: 0.5rem;
}

.games-header-left .section-title {
    margin-bottom: 0;
    text-align: left;
}

.games-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 8px 18px;
    border-radius: var(--radius-md);
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.games-view-all:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateX(3px);
}

/* Category Pills */
.game-category-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.game-category-pills .pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.2);
    color: var(--text-muted);
    padding: 7px 18px;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.game-category-pills .pill:hover,
.game-category-pills .pill.active {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(185, 28, 28, 0.1));
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.15);
}

/* Game Grid */
.premium-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.game-card-v2 {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    border: 1px solid rgba(201, 162, 39, 0.12);
    transition: var(--transition);
    background: var(--bg-card);
}

.game-card-v2:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-gold);
    z-index: 2;
}

.game-card-v2-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.game-card-v2-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.game-card-v2:hover .game-card-v2-bg {
    transform: scale(1.1);
}

/* Top badges */
.game-card-v2-top {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.game-rank-badge {
    width: 32px;
    height: 32px;
    background: rgba(5, 12, 22, 0.85);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
}

.game-hot-tag {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Bottom overlay */
.game-card-v2-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 12, 22, 0.98) 100%);
    padding: 2.5rem 1rem 1rem;
    transform: translateY(60px);
    transition: transform 0.35s ease;
}

.game-card-v2:hover .game-card-v2-overlay {
    transform: translateY(0);
}

/* On touch devices, always show the overlay so content is readable */
@media (hover: none) {
    .game-card-v2-overlay {
        transform: translateY(0);
    }

    .game-card-v2:hover {
        transform: none;
    }
}

.game-card-v2-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.game-card-v2-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.game-card-v2-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    width: 100%;
}

.game-card-v2-btn:hover {
    filter: brightness(1.12);
    color: var(--navy-dark);
    box-shadow: var(--shadow-gold);
}

/* Payment Bar */
.payment-bar-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.pay-bar-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.pay-bar-label i {
    color: var(--success);
}

.pay-bar-icons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pay-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.18);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.pay-chip:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201, 162, 39, 0.08);
}

/* ── News Section ── */
.latest-news {
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.news-grid-glow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card-glow {
    background: rgba(15, 31, 54, 0.7);
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.news-card-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s;
}

.news-card-glow:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.news-card-glow:hover::before {
    opacity: 1;
}

.news-glow-img {
    height: 210px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.news-glow-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card-glow:hover .news-glow-img img {
    transform: scale(1.06);
}

.news-badge-glow {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(201, 162, 39, 0.9);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    color: var(--navy-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.news-glow-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
}

.news-glow-content h3 a {
    color: #fff;
}

.news-glow-content h3 a:hover {
    color: var(--gold-light);
}

.news-glow-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-glow-footer {
    margin-top: auto;
}

.read-more-glow {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.read-more-glow:hover {
    color: var(--gold-light);
    gap: 14px;
}



/* ── VIP Section ── */
.vip-section {
    padding: 2rem 0;
}

.vip-outer {
    background: rgba(15, 31, 54, 0.75);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.vip-outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cd7f32, #c0c0c0, #c9a227, #e8c547, transparent);
}

.vip-outer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201, 162, 39, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Header */
.vip-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.vip-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0.5rem 0 0.75rem;
}

.vip-main-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.7;
    margin: 0;
}

/* Progress track */
.vip-progress-track {
    display: flex;
    align-items: center;
    gap: 0;
}

.vip-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.vip-ps-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.vip-progress-step.active .vip-ps-dot {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.vip-ps-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vip-progress-step.active .vip-ps-label {
    color: var(--gold-light);
}

.vip-progress-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
    position: relative;
}

.vip-progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* Tier cards row */
.vip-tiers-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    align-items: end;
    position: relative;
    z-index: 1;
}

.vip-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.8rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    background: rgba(15, 31, 54, 0.85);
}

.vip-card:hover {
    transform: translateY(-6px);
}

/* Per-tier accent colors */
.vip-bronze {
    border-color: rgba(205, 127, 50, 0.25);
}

.vip-bronze:hover {
    border-color: #cd7f32;
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.2);
}

.vip-bronze .vip-card-icon {
    color: #cd7f32;
}

.vip-bronze .vip-xp-bar {
    background: linear-gradient(90deg, #cd7f32, #f5a623);
}

.vip-bronze .vip-card-btn {
    border-color: rgba(205, 127, 50, 0.4);
    color: #f5a623;
}

.vip-bronze .vip-card-btn:hover {
    background: rgba(205, 127, 50, 0.15);
}

.vip-silver {
    border-color: rgba(192, 192, 192, 0.2);
}

.vip-silver:hover {
    border-color: #c0c0c0;
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.15);
}

.vip-silver .vip-card-icon {
    color: #c0c0c0;
}

.vip-silver .vip-xp-bar {
    background: linear-gradient(90deg, #9ca3af, #e5e7eb);
}

.vip-silver .vip-card-btn {
    border-color: rgba(192, 192, 192, 0.3);
    color: #e5e7eb;
}

.vip-silver .vip-card-btn:hover {
    background: rgba(192, 192, 192, 0.1);
}

.vip-gold {
    border-color: rgba(201, 162, 39, 0.35);
    background: rgba(201, 162, 39, 0.04);
}

.vip-gold:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.25);
}

.vip-gold .vip-card-icon {
    color: var(--gold);
}

.vip-gold .vip-xp-bar {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.vip-gold .vip-card-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    border-color: transparent;
}

.vip-gold .vip-card-btn:hover {
    filter: brightness(1.1);
}

.vip-diamond {
    border-color: rgba(232, 197, 71, 0.25);
}

.vip-diamond:hover {
    border-color: var(--gold-light);
    box-shadow: 0 0 25px rgba(232, 197, 71, 0.25);
}

.vip-diamond .vip-card-icon {
    color: var(--gold-light);
}

.vip-diamond .vip-xp-bar {
    background: linear-gradient(90deg, var(--gold), var(--red-light));
}

.vip-diamond .vip-card-btn {
    border-color: rgba(232, 197, 71, 0.4);
    color: var(--gold-light);
}

.vip-diamond .vip-card-btn:hover {
    background: rgba(232, 197, 71, 0.15);
}

/* Featured gold card — taller */
.vip-featured {
    margin-top: -1.5rem;
    padding-top: 2.5rem;
}

.vip-featured-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    padding: 5px 0;
    text-transform: uppercase;
}

    /* Glow blob */
    .vip-card-glow {
        position: absolute;
        width: 120px; height: 120px;
        border-radius: 50%;
        filter: blur(50px);
        top: -30px; right: -20px;
        pointer-events: none;
        opacity: 0.35;
    }

    .vip-bronze .vip-card-glow {
        background: #cd7f32;
    }

    .vip-silver .vip-card-glow {
        background: #c0c0c0;
    }

    .vip-gold .vip-card-glow {
        background: var(--gold);
    }

    .vip-diamond .vip-card-glow {
        background: var(--gold-light);
    }

    /* Icon */
    .vip-card-icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1;
    }

    /* Body */
    .vip-card-body {
        flex: 1;
    }

    .vip-card-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.75rem;
    }

    /* XP bar */
    .vip-xp-bar-wrap {
        height: 4px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 0.4rem;
    }

    .vip-xp-bar {
        height: 100%;
        border-radius: 4px;
        transition: width 1s ease;
    }

    .vip-xp-range {
        font-size: 0.7rem;
        color: var(--text-muted);
        font-weight: 600;
        letter-spacing: 0.3px;
        display: block;
        margin-bottom: 1.2rem;
    }

    /* Perks */
    .vip-card-perks {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        margin-bottom: 1.5rem;
    }

    .vip-card-perks li {
        font-size: 0.88rem;
        color: var(--text-muted);
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.5;
    }

    .vip-card-perks li i {
        font-size: 0.75rem;
        color: var(--success);
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* CTA button */
    .vip-card-btn {
        display: block;
        text-align: center;
        padding: 9px 16px;
        border-radius: 50px;
        font-size: 0.82rem;
        font-weight: 700;
        border: 1px solid;
        transition: var(--transition);
        letter-spacing: 0.3px;
    }

    /* Responsive */
    @media (max-width: 1100px) {
        .vip-tiers-row {
            grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
        }

        .vip-featured {
            margin-top: 0;
        }
    }

    @media (max-width: 768px) {
        .vip-tiers-row {
            grid-template-columns: 1fr; gap: 1.75rem;
        }

        .vip-outer {
            padding: 2rem 1.5rem;
        }

        .vip-header {
            flex-direction: column; align-items: flex-start;
        }

        .vip-progress-track {
            display: none;
        }

        .vip-card {
            padding: 2rem 1.75rem 1.75rem;
        }

        .vip-card-name {
            font-size: 1.5rem;
        }

        .vip-card-icon {
            font-size: 2.5rem; margin-bottom: 1.25rem;
        }

        .vip-card-perks {
            gap: 0.75rem;
        }

        .vip-card-perks li {
            font-size: 0.9rem;
        }

        .vip-card-btn {
            padding: 12px 20px; font-size: 0.9rem; min-height: 48px;
        }
    }

    @media (max-width: 480px) {
        .vip-tiers-row {
            gap: 1.25rem;
        }

        .vip-outer {
            padding: 1.5rem 1.25rem;
        }

        .vip-card {
            padding: 1.75rem 1.5rem 1.5rem;
        }

        .vip-card-name {
            font-size: 1.4rem;
        }

        .vip-card-icon {
            font-size: 2.2rem;
        }

        .vip-main-title {
            font-size: 1.65rem;
        }

        .vip-main-desc {
            font-size: 0.88rem;
        }
    }

    .htp-steps-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        gap: 0;
        align-items: center;
    }

    .htp-step {
        background: rgba(15, 31, 54, 0.7);
        border: 1px solid rgba(201, 162, 39, 0.15);
        border-radius: var(--radius-lg);
        padding: 2.5rem 2rem;
        text-align: center;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .htp-step::before {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        opacity: 0;
        transition: opacity 0.3s;
    }

    .htp-step:hover {
        transform: translateY(-5px); border-color: var(--gold);
    }

    .htp-step:hover::before {
        opacity: 1;
    }

    .htp-step-num {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        -webkit-background-clip: text;
        background: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .htp-step-icon {
        font-size: 1.8rem;
        color: var(--gold);
        margin-bottom: 1rem;
    }

    .htp-step-title {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.75rem;
    }

    .htp-step-desc {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .htp-connector {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 0.5rem;
    }

    .htp-connector span {
        display: block;
        width: 40px; height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        position: relative;
    }

    .htp-connector span::after {
        content: '';
        position: absolute;
        right: -6px; top: -4px;
        border: 5px solid transparent;
        border-left-color: var(--gold);
    }

    /* ── Why Choose ── */
    .why-choose-section {
        padding: 2rem 0;
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .why-card {
        background: rgba(15, 31, 54, 0.7);
        border: 1px solid rgba(201, 162, 39, 0.15);
        border-radius: var(--radius-lg);
        padding: 2.5rem;
        transition: var(--transition);
        height: 100%;
    }

    .why-card:hover {
        border-color: rgba(201, 162, 39, 0.4);
        box-shadow: var(--shadow-gold);
    }

    .why-icon-wrapper {
        width: 64px; height: 64px;
        background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(185, 28, 28, 0.15));
        border: 1px solid rgba(201, 162, 39, 0.3);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: var(--gold);
    }

    .why-list {
        list-style: none;
    }

    .list-icon {
        width: 36px; height: 36px;
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 0.9rem;
    }

    .payment-icons-grid {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .pay-method-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .pay-icon {
        width: 48px; height: 48px;
        background: rgba(201, 162, 39, 0.12);
        border: 1px solid rgba(201, 162, 39, 0.25);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--gold);
    }

    /* ── Info / Features Grid ── */
    .info-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    /* ── Glass Panel ── */
    .glass-panel {
        background: rgba(15, 31, 54, 0.7);
        border: 1px solid rgba(201, 162, 39, 0.15);
        border-radius: var(--radius-xl);
        padding: 3.5rem;
        position: relative;
        overflow: hidden;
    }

    .features-grid-modern {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .feature-box {
        background: rgba(15, 31, 54, 0.7);
        border: 1px solid rgba(201, 162, 39, 0.12);
        border-radius: var(--radius-lg);
        padding: 2rem;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .feature-box::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .feature-box:hover {
        border-color: rgba(201, 162, 39, 0.35); transform: translateY(-4px);
    }

    .feature-box:hover::after {
        transform: scaleX(1);
    }

    .feature-icon {
        width: 52px; height: 52px;
        background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(185, 28, 28, 0.15));
        border: 1px solid rgba(201, 162, 39, 0.3);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--gold);
        margin-bottom: 1.2rem;
    }

    .feature-box h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.75rem;
    }

    .feature-box p {
        font-size: 0.88rem;
        color: var(--text-muted);
        line-height: 1.7;
    }

    /* ══════════════════════════════════════════
   WINNER CARDS — .wc-*
══════════════════════════════════════════ */
    .wc-grid {
        display: flex;
        gap: 1.75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .wc-card {
        flex: 1 1 280px;
        max-width: 360px;
        background: rgba(15, 31, 54, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 24px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    }

    .wc-card:hover {
        transform: translateY(-10px);
        border-color: rgba(201, 162, 39, 0.35);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 162, 39, 0.06);
    }

    .wc-card-featured {
        border-color: rgba(201, 162, 39, 0.3);
        background: rgba(20, 38, 60, 0.85);
        box-shadow: 0 8px 30px rgba(201, 162, 39, 0.1);
    }

    /* Top banner */
    .wc-top {
        background: linear-gradient(135deg, #c9a227, #a07818);
        padding: 1.1rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .wc-card-featured .wc-top {
        background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    }

    .wc-live {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
    }

    .wc-dot {
        width: 7px;
        height: 7px;
        background: #fff;
        border-radius: 50%;
        animation: wc-blink 1.4s infinite;
        flex-shrink: 0;
        display: inline-block;
    }

    @keyframes wc-blink {
        0%, 100% {
            opacity: 1; transform: scale(1);
        }

        50% {
            opacity: 0.3; transform: scale(0.8);
        }
    }

    .wc-rank {
        font-size: 0.8rem;
        font-weight: 700;
        color: #fff;
        background: rgba(0, 0, 0, 0.25);
        padding: 4px 10px;
        border-radius: 50px;
    }

    /* Avatar */
    .wc-avatar-wrap {
        background: rgba(0, 0, 0, 0.15);
        display: flex;
        justify-content: center;
        padding: 1.75rem 1rem 0;
    }

    .wc-avatar {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: linear-gradient(135deg, #c9a227, #a07818);
        border: 4px solid rgb(13, 26, 45);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Playfair Display', serif;
        font-weight: 800;
        font-size: 1.9rem;
        color: #0a1628;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        margin-bottom: -1rem;
    }

    /* Card body */
    .wc-body {
        padding: 2rem 1.5rem 1.75rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
    }

    .wc-name {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        margin-top: 0.5rem;
    }

    .wc-game {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-top: 5px;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .wc-game i {
        color: #c9a227;
    }

    .wc-divider {
        width: 40px;
        height: 1px;
        background: rgba(255, 255, 255, 0.08);
        margin: 1.25rem auto;
        align-self: center;
    }

    .wc-label {
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 3px;
        color: #c9a227;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .wc-amount {
        font-family: 'Playfair Display', serif;
        font-size: 2.1rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
    }

    .wc-amount-gold {
        color: #e8c547;
        text-shadow: 0 0 20px rgba(232, 197, 71, 0.35);
    }

    .wc-time {
        font-size: 0.78rem;
        color: var(--text-muted);
        margin-top: 0.75rem;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    @keyframes eyebrow-pulse {
        0%, 100% {
            opacity: 1;
        }

        50% {
            opacity: 0.2;
        }
    }

    @media (max-width: 768px) {
        .wc-grid {
            gap: 1.25rem;
        }

        .wc-card {
            max-width: 100%;
        }

        .wc-amount {
            font-size: 1.75rem;
        }
    }

    @media (max-width: 480px) {
        .wc-card {
            flex: 1 1 100%;
        }
    }










    /* ── Responsive ── */











    .wins-feed-subtitle {
        font-size: 1rem;
        color: var(--text-muted);
        margin: 0;
        max-width: 500px;
        line-height: 1.7;
    }

    .wins-feed-cta {
        white-space: nowrap;
        padding: 14px 32px;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    /* Feed List */
    .wins-feed-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Individual Feed Item */
    .wins-feed-item {
        display: grid;
        grid-template-columns: 56px 54px 1fr auto auto;
        align-items: center;
        gap: 1.25rem;
        background: rgba(15, 31, 54, 0.55);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 18px;
        padding: 1.5rem 2rem;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .wins-feed-item::before {
        content: '';
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 0 4px 4px 0;
    }

    .wins-feed-item.featured {
        background: rgba(201, 162, 39, 0.06);
        border-color: rgba(201, 162, 39, 0.25);
    }

    .wins-feed-item.featured::before {
        background: var(--gold);
    }

    .wins-feed-item:hover {
        background: rgba(15, 31, 54, 0.85);
        border-color: rgba(201, 162, 39, 0.2);
        transform: translateX(6px);
        box-shadow: -6px 0 20px rgba(201, 162, 39, 0.08);
    }

    /* Rank Badge */
    .feed-rank {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 800;
        font-family: 'Inter', sans-serif;
        flex-shrink: 0;
    }

    .feed-rank.gold {
        background: rgba(201, 162, 39, 0.15); color: var(--gold); border: 1px solid rgba(201, 162, 39, 0.3);
    }

    .feed-rank.red {
        background: rgba(220, 38, 38, 0.15); color: #f87171; border: 1px solid rgba(220, 38, 38, 0.3);
    }

    .feed-rank.green {
        background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3);
    }

    /* Avatar */
    .feed-avatar {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Playfair Display', serif;
        font-weight: 800;
        font-size: 1.3rem;
        color: var(--navy-dark);
        flex-shrink: 0;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    }

    /* Info Column */
    .feed-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
        min-width: 0;
    }

    .feed-name {
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .feed-badge {
        background: rgba(201, 162, 39, 0.15);
        color: var(--gold-light);
        font-size: 0.65rem;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 50px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .feed-game {
        font-size: 0.82rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .feed-game i {
        color: var(--gold);
    }

    /* Multiplier */
    .feed-multiplier {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.15);
        letter-spacing: -1px;
        flex-shrink: 0;
        text-align: center;
        min-width: 70px;
        transition: color 0.3s;
    }

    .wins-feed-item:hover .feed-multiplier,
    .wins-feed-item.featured .feed-multiplier {
        color: rgba(201, 162, 39, 0.4);
    }

    /* Amount Column */
    .feed-amount {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
        flex-shrink: 0;
        min-width: 110px;
    }

    .feed-amount-val {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
    }

    .feed-amount-val.gold {
        color: var(--gold-light);
        text-shadow: 0 0 15px rgba(232, 197, 71, 0.3);
    }

    .feed-time {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    /* Progress bar (full row — spans all columns via absolute) */
    .feed-bar-wrap {
        display: none;
        /* Hidden in grid layout, only for visual row */
    }

    /* ─── Responsive ─── */
    @media (max-width: 992px) {
        .wins-feed-item {
            grid-template-columns: 44px 46px 1fr auto;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
        }

        .feed-multiplier {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .wins-feed-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .wins-feed-cta {
            align-self: stretch; justify-content: center;
        }

        .wins-feed-item {
            grid-template-columns: 40px 42px 1fr auto;
            padding: 1rem 1.25rem;
            gap: 0.75rem;
        }

        .feed-amount-val {
            font-size: 1.2rem;
        }

        .feed-rank {
            width: 36px; height: 36px; font-size: 0.75rem; border-radius: 8px;
        }

        .feed-avatar {
            width: 42px; height: 42px; font-size: 1.1rem;
        }
    }

    @media (max-width: 480px) {
        .feed-badge {
            display: none;
        }

        .feed-amount-val {
            font-size: 1rem;
        }
    }



    .win-card-v3 {
        background: rgba(15, 31, 54, 0.6);
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        display: flex;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .win-card-v3:hover {
        transform: translateY(-12px);
        border-color: rgba(201, 162, 39, 0.4);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 162, 39, 0.1);
    }

    .win-card-v3-header {
        height: 120px;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .win-card-v3-header::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://www.transparenttextures.com/patterns/cubes.png');
        opacity: 0.1;
    }

    .win-game-badge {
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(5px);
        color: #fff;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        z-index: 2;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .win-live-dot {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.3);
        padding: 4px 10px;
        border-radius: 50px;
        font-size: 0.65rem;
        font-weight: 800;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 6px;
        z-index: 2;
    }

    .win-live-dot span {
        width: 6px;
        height: 6px;
        background: #ff4d4d;
        border-radius: 50%;
        animation: live-pulse-red 1.5s infinite;
    }

    @keyframes live-pulse-red {
        0%, 100% {
            transform: scale(1); opacity: 1;
        }

        50% {
            transform: scale(1.5); opacity: 0.5;
        }
    }

    .win-card-v3-content {
        padding: 2.5rem 1.5rem 1.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .win-player-box {
        position: relative;
        margin-top: -55px;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .win-player-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        border: 4px solid var(--bg-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Playfair Display', serif;
        font-weight: 800;
        font-size: 1.8rem;
        color: var(--navy-dark);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .win-player-name {
        display: block;
        font-size: 1.15rem;
        font-weight: 700;
        color: #fff;
    }

    .win-player-time {
        display: block;
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    .win-amount-box {
        margin-bottom: 2rem;
    }

    .win-amount-label {
        display: block;
        font-size: 0.7rem;
        font-weight: 800;
        color: var(--gold);
        letter-spacing: 2px;
        margin-bottom: 5px;
    }

    .win-amount-value {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }

    .win-amount-value.highlight {
        color: var(--gold-light);
        text-shadow: 0 0 20px rgba(232, 197, 71, 0.4);
    }

    .win-card-v3-footer {
        margin-top: auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .win-card-featured {
        border-color: rgba(201, 162, 39, 0.4);
        background: rgba(201, 162, 39, 0.05);
    }

    .win-featured-label {
        position: absolute;
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gold);
        color: var(--navy-dark);
        font-size: 0.65rem;
        font-weight: 800;
        padding: 4px 15px;
        border-radius: 10px 10px 0 0;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    @media (max-width: 992px) {
        .wins-grid-v3 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .wins-grid-v3 {
            grid-template-columns: 1fr;
        }

        .win-card-v3-header {
            height: 100px;
        }

        .win-amount-value {
            font-size: 1.8rem;
        }
    }

    .win-confetti i {
        color: var(--gold);
        font-size: 0.85rem;
        animation: float-star 3.5s ease-in-out infinite;
    }

    .win-confetti i:nth-child(1) {
        animation-delay: 0s;
    }

    .win-confetti i:nth-child(2) {
        animation-delay: 0.7s;
    }

    .win-confetti i:nth-child(3) {
        animation-delay: 1.4s;
    }

    @keyframes float-star {
        0%, 100% {
            transform: translateY(0) rotate(0deg) scale(1);
        }

        50% {
            transform: translateY(-15px) rotate(15deg) scale(1.15);
        }
    }

    /* ── Responsive ── */
    .footer-register-banner {
        background: linear-gradient(90deg, var(--gold-dark), var(--gold));
        padding: 3.5rem 0;
        position: relative;
        z-index: 1;
    }

    .footer-register-banner h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--navy-dark) !important;
    }

    .footer-register-banner .btn-green {
        background: var(--navy);
        color: var(--gold-light);
        border-radius: var(--radius-sm);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .footer-register-banner .btn-green:hover {
        background: var(--navy-dark);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

@media (max-width: 1200px) {
    .premium-grid-v2 { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    .vip-outer { padding: 3rem; }
}

@media (max-width: 1100px) {
    .vip-tiers-row { grid-template-columns: repeat(2, 1fr); }
    .htp-steps-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .htp-connector { display: none; }
}

/* ── Tablet ≤992px ── */
@media (max-width: 992px) {
    /* Hero */
    .hero-split {
        display: block;   /* simplest: block flow, no grid complications */
    }
    .hero-visual { display: none !important; }
    .hero-text-content { width: 100%; max-width: 100%; text-align: center; }
    .hero {
        min-height: unset;
        align-items: flex-start;
        padding-top: 5.5rem;
        padding-bottom: 3rem;
    }
    /* News: 2 columns on tablet */
    .news-grid-glow { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    /* Game grid */
    .premium-grid-v2 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    /* VIP: 2 columns on tablet */
    .vip-tiers-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .vip-featured { margin-top: 0; }
    /* Layout */
    .why-grid { grid-template-columns: 1fr; }
    .dark-panel-bg { padding: 2.5rem; }
    .games-section-header { flex-direction: column; align-items: flex-start; }
    .features-grid-modern { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .vip-outer { padding: 2.5rem; }
    .glass-panel { padding: 2.5rem; }
}

/* ── Mobile ≤768px ── */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        min-height: unset;
        align-items: flex-start;
        padding-top: 5rem;
        padding-bottom: 2.5rem;
    }
    .hero-title { font-size: 1.75rem; line-height: 1.2; }
    .hero-desc {
        font-size: 0.93rem;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .badge { font-size: 0.72rem; padding: 5px 14px; }
    /* Hero buttons */
    .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem !important; }
    .hero-actions a { width: 100%; justify-content: center; padding: 14px 20px !important; min-height: 50px; font-size: 0.95rem; }
    /* Hero stats */
    .hero-stats {
        gap: 0;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 1.25rem;
        margin-top: 2rem !important;
    }
    .stat-item { padding-left: 0; text-align: center; flex: 1; }
    .stat-item::before { display: none; }
    .stat-item h4 { font-size: 1.1rem !important; }
    .stat-item p { font-size: 0.67rem !important; }

    /* News / article cards — SINGLE column, full width */
    .news-grid-glow {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    .news-card-glow { width: 100%; }
    .news-glow-img { height: 200px; }
    /* Fix text truncation inside news cards */
    .news-glow-content h3 { font-size: 1.1rem; }
    .news-glow-content p {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        overflow: visible;
        display: block;
    }

    /* VIP — single column */
    .vip-tiers-row { grid-template-columns: 1fr !important; gap: 1.25rem; }
    .vip-featured { margin-top: 0; }
    .vip-outer { padding: 1.75rem 1.25rem; }
    .vip-header { flex-direction: column; align-items: flex-start; }
    .vip-progress-track { display: none; }

    /* Game grid — 2 columns */
    .premium-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    /* SEO text readability on mobile */
    .seo-long-content p { text-align: left !important; }

    /* Why choose cards — single col */
    .why-grid { grid-template-columns: 1fr !important; }
    .features-grid-modern { grid-template-columns: 1fr !important; }

    /* Big Wins feed - 1 col */
    .wc-grid { gap: 1.25rem; }
    .wc-card { max-width: 100%; flex: 1 1 100%; }

    /* How to play */
    .htp-steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }

    /* Panel padding */
    .dark-panel-bg { padding: 1.75rem 1.25rem; }
    .glass-panel { padding: 2rem 1.25rem; }

    /* Category pills — scrollable */
    .game-category-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
        margin-bottom: 1.5rem;
    }
    .game-category-pills::-webkit-scrollbar { display: none; }
    .game-category-pills .pill { padding: 8px 14px; font-size: 0.8rem; min-height: 40px; white-space: nowrap; flex-shrink: 0; }

    /* Payment bar */
    .payment-bar-v2 { flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
    .pay-bar-icons { justify-content: center; flex-wrap: wrap; gap: 0.5rem; }

    /* Touch-target minimums */
    .read-more-glow { min-height: 44px; display: inline-flex; align-items: center; }
    .news-card-glow a { min-height: 44px; }
    .game-card-v2-btn { min-height: 42px; }
    .vip-card-btn { min-height: 46px; }
    .games-view-all { min-height: 44px; }

    /* Footer banner */
    .footer-register-banner .container { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-register-banner h3 { font-size: 1.15rem !important; }
    .footer-register-banner .btn-green { align-self: center; min-width: 200px; }
}

@media (min-width: 769px) {
    .grid-cols-md-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 993px) {
    .grid-cols-lg-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Small mobile ≤480px ── */
@media (max-width: 480px) {
    .hero { padding-top: 5rem; padding-bottom: 2rem; }
    .hero-title { font-size: 1.6rem; line-height: 1.22; }
    .hero-desc { font-size: 0.9rem; margin-bottom: 1.25rem !important; }
    .badge { font-size: 0.7rem; padding: 5px 14px; }
    .hero-stats { padding-top: 1rem; gap: 0; margin-top: 1.75rem !important; }
    .stat-item h4 { font-size: 1.05rem !important; }
    .stat-item p { font-size: 0.63rem !important; }
    .hero-actions a { padding: 13px 18px !important; font-size: 0.88rem; min-height: 48px; }
    /* Panels */
    .glass-panel { padding: 1.75rem 1.25rem; }
    /* Game grid — 2-col */
    .premium-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .game-card-v2 { aspect-ratio: 2/3; }
    .game-card-v2-btn { font-size: 0.72rem; padding: 8px 10px; min-height: 42px; }
    .game-card-v2-title { font-size: 0.88rem; }
    .dark-panel-bg { padding: 1.5rem 1rem; }
    /* VIP */
    .vip-outer { padding: 1.5rem 1rem; }
    .vip-header-left { display: flex; flex-direction: column; align-items: flex-start; }
    .vip-main-title { font-size: 1.7rem; }
    /* Buttons */
    .btn-green, .btn-secondary { padding: 12px 20px; font-size: 0.85rem; min-height: 46px; }
    /* Footer banner */
    .footer-register-banner { padding: 2.5rem 0 !important; }
    .footer-register-banner h3 { font-size: 1.05rem !important; }
    .footer-register-banner .btn-green { width: 100%; max-width: 280px; }
    /* News */
    .news-glow-img { height: 170px; }
    /* Payment */
    .payment-bar-v2 { padding: 1.5rem !important; }
    .pay-bar-icons { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; justify-items: center; }
    .pay-icon { width: 64px !important; height: 64px !important; font-size: 2rem !important; border-radius: 12px !important; }
}

/* ── Very small ≤400px ── */
@media (max-width: 400px) {
    .hero { padding: 4.5rem 0 2rem; }
    .hero-title { font-size: 1.45rem; line-height: 1.25; }
    .hero-desc { font-size: 0.88rem; }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        overflow-x: hidden;
        padding-bottom: 0;
        margin-top: 1.5rem !important;
    }
    .stat-item { flex: unset; text-align: center; padding-left: 0; }
    .stat-item h4 { font-size: 0.95rem !important; }
    .stat-item p { font-size: 0.6rem !important; }
    .hero-actions a { padding: 12px 16px !important; font-size: 0.85rem; min-height: 46px; }
    .badge { padding: 4px 12px; font-size: 0.68rem; }
    .premium-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .game-card-v2 { aspect-ratio: 2/3; }
    .game-card-v2-overlay { transform: translateY(0); }
    .glass-panel { padding: 1.5rem 0.875rem; }
    .vip-outer { padding: 1.25rem 0.75rem; }
    .vip-main-title { font-size: 1.5rem; }
    .game-card-v2-title { font-size: 0.95rem; }
    .game-card-v2-overlay { padding: 1.25rem 0.875rem 0.875rem; }
    .dark-panel-bg { padding: 1.25rem 0.875rem; }
}