/* ── Modern Indonesian Casino UI Stylesheet ── */
/* Inspired by high-end tech corporate layout (Royal Indigo, Electric Cyan, Gold) */

/* ── Section Utilities ── */
.section {
    padding: 24px 16px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section {
        padding: 40px 24px;
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}

.section-title {
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.3px;
    flex: 1;
    min-width: 0;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 24px;
    }
}

.section-title .title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(79, 70, 229, 0.3));
    border: 1px solid var(--color-border-glow);
    color: var(--color-primary);
}

.section-title .title-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
}

.section-subtitle {
    font-size: 13.5px;
    color: var(--color-muted);
    margin-top: 4px;
    font-weight: 400;
}

.view-all {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 16px;
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: var(--radius-full);
    background: rgba(0, 210, 255, 0.05);
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-all:hover {
    color: #ffffff;
    border-color: var(--color-primary);
    background: var(--color-primary);
    box-shadow: 0 0 16px var(--color-primary-glow);
    transform: translateY(-1px);
}

/* ── Live Indicator Badge ── */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid rgba(244, 63, 94, 0.4);
    color: #ff4b6e;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    letter-spacing: 0.8px;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #ff4b6e;
    border-radius: 50%;
    animation: livePulse 1.2s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 8px #ff4b6e; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* ── Hero Casino Section (2-Column Split Hero like Reference) ── */
.hero-casino {
    position: relative;
    padding: 36px 16px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-casino {
        padding: 56px 24px 32px;
    }
}

.hero-box {
    background: linear-gradient(135deg, #0d153f 0%, #162266 50%, #0c1236 100%);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: var(--radius-xl);
    padding: 28px 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
    .hero-box {
        padding: 40px 36px;
    }
}

@media (min-width: 1024px) {
    .hero-box {
        padding: 48px 44px;
    }
}

.hero-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-box::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.24) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Hero 2-Column Split Grid ── */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 40px;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid rgba(0, 210, 255, 0.35);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    align-self: flex-start;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.22;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 42px;
    }
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #00d2ff 20%, #60a5fa 60%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--color-text-sub);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 15px;
    }
}

/* ── Hero Quick Highlights Row ── */
.hero-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(0, 210, 255, 0.08);
    border-color: var(--color-border-glow);
}

.hl-icon {
    font-size: 15px;
}

.hl-text {
    display: flex;
    flex-direction: column;
}

.hl-text small {
    font-size: 10px;
    color: var(--color-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hl-text strong {
    font-size: 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #00d2ff 0%, #2563eb 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    box-shadow: 0 12px 35px rgba(0, 210, 255, 0.6);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text-main);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border-light);
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* ── Right Column: Hero Banner Showcase ── */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-banner-card {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(20, 29, 77, 0.8) 0%, rgba(13, 20, 56, 0.95) 100%);
    border: 1px solid rgba(0, 210, 255, 0.35);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 210, 255, 0.2);
    transition: var(--transition);
}

.hero-banner-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 210, 255, 0.35);
    transform: translateY(-2px);
}

.hero-banner-badge {
    position: absolute;
    top: -12px;
    left: 18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f43f5e, #f59e0b);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 14px rgba(244, 63, 94, 0.4);
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: livePulse 1.2s infinite;
}

.hero-banner-media {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    border-radius: calc(var(--radius-lg) - 4px) !important;
    overflow: hidden !important;
    display: block !important;
    box-shadow: none !important;
    border: none !important;
}

.hero-banner-link {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: inherit;
    border: none;
    box-shadow: none;
}

.hero-banner-link:hover {
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 380px;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(135deg, #162266, #0e1540);
}

.hero-banner-card:hover .hero-banner-img {
    transform: scale(1.03);
}

.hero-banner-float-tag {
    position: absolute;
    bottom: -12px;
    right: 18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #00d2ff, #2563eb);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 16px rgba(0, 210, 255, 0.4);
}

.hero-banner-float-tag .tag-star {
    color: #fef08a;
    font-size: 12px;
}

/* ── 3 Floating Benefit Cards (Like Reference Layout) ── */
.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    position: relative;
    z-index: 3;
}

@media (min-width: 768px) {
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: -30px;
    }
}

.feature-card {
    background: linear-gradient(135deg, #101844 0%, #151e52 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-glow);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.15), rgba(79, 70, 229, 0.25));
    border: 1px solid var(--color-border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-primary);
}

.feature-icon.icon-gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(234, 88, 12, 0.25));
    border-color: rgba(245, 158, 11, 0.35);
}

.feature-icon.icon-gold svg {
    fill: var(--color-gold);
}

.feature-icon.icon-emerald {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.25));
    border-color: rgba(16, 185, 129, 0.35);
}

.feature-icon.icon-emerald svg {
    fill: var(--color-emerald);
}

.feature-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 12.5px;
    color: var(--color-muted);
    line-height: 1.5;
}

/* ── Provider Marquee Strip ── */
.provider-strip {
    padding: 16px 0 24px;
    overflow: hidden;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.strip-label {
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--color-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.provider-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.provider-badge-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-sub);
    transition: var(--transition);
}

.provider-badge-pill:hover {
    background: rgba(0, 210, 255, 0.08);
    border-color: var(--color-border-glow);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.provider-badge-pill svg {
    width: 16px;
    height: 16px;
    fill: var(--color-primary);
}

/* ── Categories Navigation Strip ── */
.categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 10px 18px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-sub);
    white-space: nowrap;
    transition: var(--transition);
}

.cat-tab svg {
    width: 16px;
    height: 16px;
    fill: var(--color-muted);
    transition: var(--transition);
}

.cat-tab:hover {
    background: var(--bg-card-hover);
    border-color: var(--color-border-glow);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.cat-tab:hover svg {
    fill: var(--color-primary);
}

.cat-tab--active {
    background: linear-gradient(135deg, #00d2ff 0%, #2563eb 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 210, 255, 0.4);
}

.cat-tab--active svg {
    fill: #ffffff;
}

/* ── Vertical Games (Recommended Games Grid) ── */
.vertical-games {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .vertical-games {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vertical-games {
        grid-template-columns: repeat(3, 1fr);
    }
}

.game-card {
    background: linear-gradient(180deg, #101844 0%, #0d143a 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    position: relative;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-glow);
    box-shadow: var(--shadow-hover);
}

.game-card-image-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #090e29;
}

.game-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover .game-card-image {
    transform: scale(1.08);
}

.game-card-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 20, 58, 0.95) 0%, rgba(13, 20, 58, 0.3) 50%, transparent 100%);
    pointer-events: none;
}

.game-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    gap: 6px;
}

.rtp-pill {
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-xs);
    letter-spacing: 0.4px;
}

.hot-pill {
    background: linear-gradient(135deg, #f43f5e, #f59e0b);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-xs);
    letter-spacing: 0.4px;
}

.game-card-top {
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.game-card-domain {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-info {
    padding: 14px 18px 12px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--color-text-sub);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.game-card-actions {
    display: flex;
    gap: 10px;
    padding: 0 18px 18px;
}

.btn-card {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.4px;
    transition: var(--transition);
}

.btn-card.visite {
    background: linear-gradient(135deg, #00d2ff 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 210, 255, 0.3);
}

.btn-card.visite:hover {
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.5);
    transform: translateY(-1.5px);
}

.btn-card.contato {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-main);
}

.btn-card.contato:hover {
    background: rgba(245, 158, 11, 0.12);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateY(-1.5px);
}

/* ── Modern 2x3 Grid of Live Winner Cards ── */
.winner-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .winner-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .winner-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.winner-card {
    background: linear-gradient(145deg, #101844 0%, #131c50 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.winner-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-glow);
    box-shadow: var(--shadow-hover);
}

.winner-card:hover::before {
    opacity: 1;
}

.winner-card--gold {
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(145deg, #121946 0%, #192055 100%);
}

.winner-card--gold::before {
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.winner-card--cyan {
    border-color: rgba(0, 210, 255, 0.35);
}

.winner-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.winner-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.winner-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.avatar-purple { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.avatar-cyan { background: linear-gradient(135deg, #00d2ff, #0284c7); }
.avatar-emerald { background: linear-gradient(135deg, #10b981, #059669); }
.avatar-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.avatar-pink { background: linear-gradient(135deg, #ec4899, #be185d); }
.avatar-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }

.winner-meta {
    display: flex;
    flex-direction: column;
}

.winner-name {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
}

.winner-time {
    font-size: 11px;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.pulse-emerald {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: livePulse 1.2s infinite;
}

.multiplier-pill {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
    font-size: 10.5px;
    font-weight: 900;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.multiplier-pill--cyan {
    background: rgba(0, 210, 255, 0.15);
    border-color: rgba(0, 210, 255, 0.4);
    color: #00d2ff;
}

.multiplier-pill--emerald {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: #34d399;
}

.winner-game-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.game-thumb-box {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #0c1236;
    border: 1px solid var(--color-border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game-title-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.game-title-text {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-provider-tag {
    font-size: 10.5px;
    color: var(--color-primary);
    font-weight: 600;
}

.winner-financials {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2px 2px;
}

.fin-col {
    display: flex;
    flex-direction: column;
}

.fin-col.text-right {
    text-align: right;
    align-items: flex-end;
}

.fin-label {
    display: block;
    font-size: 10.5px;
    color: var(--color-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.fin-val.fin-bet {
    font-size: 12.5px;
    color: var(--color-text-sub);
    font-weight: 600;
}

.fin-val.fin-profit {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    color: var(--color-emerald);
}

.fin-val.glow-gold {
    color: #fbbf24;
    text-shadow: 0 0 14px rgba(251, 191, 36, 0.4);
}

.fin-val.glow-cyan {
    color: #00d2ff;
    text-shadow: 0 0 14px rgba(0, 210, 255, 0.4);
}

.winner-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
}

.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #10b981;
    font-weight: 700;
}

.verify-badge svg {
    width: 14px;
    height: 14px;
    fill: #10b981;
}

.channel-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xs);
    padding: 2px 8px;
    color: var(--color-text-sub);
    font-weight: 700;
    font-size: 10.5px;
}

/* ── Small Games Grid ── */
.small-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width: 480px) {
    .small-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .small-games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .small-games-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.small-game {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    position: relative;
}

.small-game img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.small-game:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-glow);
    box-shadow: var(--shadow-hover);
}

.small-game:hover img {
    transform: scale(1.08);
}

.small-game-footer {
    padding: 10px 8px;
    text-align: center;
    background: rgba(10, 15, 42, 0.9);
}

.small-game-name {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Full-Width Esports / Cyber Tournament Dashboard ── */
.cyber-tournament-dashboard {
    background: linear-gradient(135deg, #0c133a 0%, #162058 50%, #0a0f2e 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 158, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
}

.cyber-tournament-dashboard::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);
    pointer-events: none;
}

.cyber-dash-header {
    padding: 28px 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(8, 12, 38, 0.4);
}

@media (min-width: 768px) {
    .cyber-dash-header {
        padding: 36px 36px 24px;
    }
}

.cyber-header-left {
    max-width: 650px;
}

.cyber-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(234, 88, 12, 0.3));
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

.cyber-pulse {
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    animation: livePulse 1.2s infinite;
}

.cyber-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .cyber-title {
        font-size: 30px;
    }
}

.cyber-subtitle {
    font-size: 13px;
    color: var(--color-text-sub);
    line-height: 1.6;
}

/* ── Digital Countdown Box ── */
.cyber-countdown-box {
    background: rgba(6, 10, 32, 0.75);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.countdown-label {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 6px;
}

.timer-unit {
    background: #080d28;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xs);
    padding: 6px 9px;
    text-align: center;
    min-width: 44px;
}

.timer-num {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 900;
    color: #00d2ff;
    display: block;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.timer-lbl {
    font-size: 9px;
    color: var(--color-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 3px;
    display: block;
}

.timer-sep {
    color: #00d2ff;
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
}

/* ── Dashboard Body ── */
.cyber-dash-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
}

@media (min-width: 992px) {
    .cyber-dash-body {
        grid-template-columns: 1.15fr 0.85fr;
        padding: 36px;
        gap: 36px;
    }
}

.cyber-dash-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Big Prize Card */
.cyber-prize-showcase {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.16) 0%, rgba(217, 119, 6, 0.08) 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15);
}

.trophy-glow-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.55);
    flex-shrink: 0;
}

.trophy-glow-icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.prize-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prize-sub-title {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prize-big-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 22px rgba(245, 158, 11, 0.6);
    line-height: 1.1;
}

@media (min-width: 640px) {
    .prize-big-number {
        font-size: 36px;
    }
}

.prize-guarantee {
    font-size: 11.5px;
    color: var(--color-emerald);
    font-weight: 700;
}

/* Progression Box */
.cyber-progress-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.prog-title {
    color: var(--color-muted);
    font-weight: 700;
}

.prog-stats {
    color: var(--color-text-sub);
}

.prog-stats strong {
    color: var(--color-primary);
}

.cyber-progress-track {
    background: rgba(0, 0, 0, 0.4);
    height: 10px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.cyber-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d2ff, #f59e0b);
    border-radius: var(--radius-full);
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.5);
    transition: width 1s ease-in-out;
}

/* Tier Prizes Table */
.cyber-tier-prizes {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tier-prize-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    font-size: 12.5px;
    border: 1px solid transparent;
}

.tier-gold {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.04));
    border-color: rgba(245, 158, 11, 0.35);
}

.tier-gold .tier-reward {
    color: var(--color-gold-light);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.tier-silver {
    background: linear-gradient(90deg, rgba(203, 213, 225, 0.12), rgba(203, 213, 225, 0.03));
    border-color: rgba(203, 213, 225, 0.25);
}

.tier-silver .tier-reward {
    color: #e2e8f0;
    font-weight: 700;
}

.tier-bronze {
    background: linear-gradient(90deg, rgba(180, 83, 9, 0.14), rgba(180, 83, 9, 0.03));
    border-color: rgba(180, 83, 9, 0.25);
}

.tier-bronze .tier-reward {
    color: #fdba74;
    font-weight: 700;
}

.tier-rank-badge {
    font-weight: 700;
    color: #ffffff;
}

.tier-reward {
    font-family: var(--font-heading);
    color: var(--color-text-sub);
    font-weight: 600;
}

/* Actions */
.cyber-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 6px;
}

.btn-cyber-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 800;
    padding: 12px 26px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45);
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-cyber-primary:hover {
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.65);
    transform: translateY(-2px);
}

.btn-cyber-secondary {
    color: var(--color-primary);
    font-size: 12.5px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-cyber-secondary:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ── Right Column: Leaderboard Panel ── */
.cyber-dash-right {
    display: flex;
    flex-direction: column;
}

.cyber-leaderboard-panel {
    background: rgba(6, 10, 30, 0.75);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.cyber-lb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--color-border);
}

.lb-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.cyber-live-tag {
    font-size: 10px;
    font-weight: 800;
    background: rgba(0, 210, 255, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(0, 210, 255, 0.35);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.cyber-lb-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 210, 255, 0.3) rgba(255, 255, 255, 0.02);
}

.cyber-lb-list::-webkit-scrollbar {
    width: 4px;
}

.cyber-lb-list::-webkit-scrollbar-thumb {
    background: rgba(0, 210, 255, 0.4);
    border-radius: 4px;
}

.cyber-lb-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.cyber-lb-item:hover {
    background: rgba(0, 210, 255, 0.08);
    border-color: rgba(0, 210, 255, 0.25);
    transform: translateX(3px);
}

.cyber-lb-item.rank-1 {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.22), rgba(245, 158, 11, 0.05));
    border-color: rgba(245, 158, 11, 0.4);
}

.cyber-lb-item.rank-1 .lb-prize-tag {
    color: var(--color-gold-light);
    font-weight: 900;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.cyber-lb-item.rank-2 {
    background: linear-gradient(90deg, rgba(203, 213, 225, 0.15), rgba(203, 213, 225, 0.04));
    border-color: rgba(203, 213, 225, 0.3);
}

.cyber-lb-item.rank-2 .lb-prize-tag {
    color: #e2e8f0;
}

.cyber-lb-item.rank-3 {
    background: linear-gradient(90deg, rgba(180, 83, 9, 0.16), rgba(180, 83, 9, 0.04));
    border-color: rgba(180, 83, 9, 0.3);
}

.cyber-lb-item.rank-3 .lb-prize-tag {
    color: #fdba74;
}

.lb-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cyber-medal {
    font-size: 18px;
    line-height: 1;
}

.cyber-num {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--color-muted);
    width: 22px;
    text-align: center;
}

.lb-user-info strong {
    font-family: var(--font-heading);
    font-size: 13px;
    color: #ffffff;
    display: block;
}

.lb-user-info small {
    font-size: 11px;
    color: var(--color-muted);
}

.lb-prize-tag {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--color-primary);
}

.cyber-lb-footer {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--color-border);
    font-size: 11px;
    color: var(--color-dim);
    text-align: center;
}

/* ── Testimonials Grid ── */
/* ── VIP Testimonials Grid & Trust Showcase ── */
.testimonial-section {
    position: relative;
}

.testimonial-header-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

@media (min-width: 900px) {
    .testimonial-header-wrap {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pulse-emerald-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 1.4s infinite;
}

.trust-summary-score {
    background: rgba(12, 19, 58, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.score-stars {
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-group {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-icon {
    width: 17px;
    height: 17px;
    fill: #f59e0b;
}

.score-rating {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
    color: #ffffff;
}

.score-desc {
    font-size: 11.5px;
    color: var(--color-text-sub);
}

.score-desc strong {
    color: var(--color-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.testimonial-card {
    background: linear-gradient(145deg, #101844 0%, #131c50 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}

.vip-card-gold {
    border-top: 3px solid #f59e0b;
}
.vip-card-gold:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 20px 48px -10px rgba(245, 158, 11, 0.25);
}

.vip-card-cyan {
    border-top: 3px solid #00d2ff;
}
.vip-card-cyan:hover {
    border-color: rgba(0, 210, 255, 0.5);
    box-shadow: 0 20px 48px -10px rgba(0, 210, 255, 0.25);
}

.vip-card-emerald {
    border-top: 3px solid #10b981;
}
.vip-card-emerald:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 48px -10px rgba(16, 185, 129, 0.25);
}

.quote-watermark {
    position: absolute;
    top: 10px;
    right: 18px;
    font-family: Georgia, serif;
    font-size: 110px;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
}

.testi-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.testi-stars-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-gold {
    color: #fbbf24;
    font-size: 16px;
    line-height: 1;
}

.rating-num {
    font-size: 12px;
    font-weight: 800;
    color: #fbbf24;
    margin-left: 4px;
}

.testi-verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #34d399;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: var(--radius-full);
}

.testi-highlight-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.dot-gold { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }
.dot-cyan { background: #00d2ff; box-shadow: 0 0 8px #00d2ff; }
.dot-emerald { background: #10b981; box-shadow: 0 0 8px #10b981; }

.testimonial-text {
    font-size: 13.5px;
    color: var(--color-text-sub);
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-text strong {
    color: var(--color-white);
}

.hl-money {
    color: #fbbf24 !important;
}

.testi-meta-box {
    background: rgba(6, 10, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-val {
    font-size: 12px;
    font-weight: 800;
    color: var(--color-text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.highlight-green {
    color: #34d399 !important;
}

.highlight-cyan {
    color: #00d2ff !important;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testi-avatar-wrap {
    position: relative;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: var(--font-heading);
    font-size: 17px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.avatar-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: 2px solid rgba(245, 158, 11, 0.5);
}

.avatar-purple {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border: 2px solid rgba(168, 85, 247, 0.5);
}

.avatar-cyan {
    background: linear-gradient(135deg, #00d2ff, #0284c7);
    border: 2px solid rgba(0, 210, 255, 0.5);
}

.avatar-badge-vip {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: #06091c;
    border: 1px solid rgba(245, 158, 11, 0.6);
    color: #fbbf24;
    font-size: 8.5px;
    font-weight: 900;
    padding: 1px 4px;
    border-radius: var(--radius-full);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 800;
    color: #ffffff;
}

.vip-tier-pill {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.gold-tier {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}

.purple-tier {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #c084fc;
}

.cyan-tier {
    background: rgba(0, 210, 255, 0.15);
    border: 1px solid rgba(0, 210, 255, 0.4);
    color: #38bdf8;
}

.author-location {
    font-size: 11.5px;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Trust Proof Strip ── */
.testi-trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
    background: linear-gradient(135deg, rgba(16, 24, 68, 0.7), rgba(12, 18, 54, 0.9));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .testi-trust-strip {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 22px 32px;
    }
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-stat-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
}

.trust-stat-content {
    display: flex;
    flex-direction: column;
}

.trust-stat-content strong {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

.trust-stat-content span {
    font-size: 11.5px;
    color: var(--color-text-sub);
}

/* ── Latest News / Strategy Blog Grid ── */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

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

.news-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-glow);
    box-shadow: var(--shadow-hover);
}

.news-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.news-content h3 a {
    color: #ffffff;
    transition: var(--transition);
}

.news-content h3 a:hover {
    color: var(--color-primary);
}

.news-content p {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Bonus & Promotions ── */
.promos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.promo-card {
    background: linear-gradient(135deg, #0e1742 0%, #152263 100%);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.promo-card--green {
    border-color: rgba(16, 185, 129, 0.3);
}

.promo-card--purple {
    border-color: rgba(139, 92, 246, 0.35);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.promo-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(0, 210, 255, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(0, 210, 255, 0.3);
    margin-bottom: 16px;
}

.promo-card--green .promo-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-emerald);
    border-color: rgba(16, 185, 129, 0.3);
}

.promo-card--purple .promo-badge {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.3);
}

.promo-amount {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.promo-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.promo-card--green .promo-label {
    color: var(--color-emerald);
}

.promo-card--purple .promo-label {
    color: #a78bfa;
}

.promo-sub {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.5;
    margin-bottom: 22px;
}

.promo-cta {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-border-light);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    text-align: center;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.promo-card:hover .promo-cta {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #06091c;
    box-shadow: 0 4px 18px var(--color-primary-glow);
}

/* ── Mobile App Download Banner ── */
.app-banner {
    background: linear-gradient(135deg, #0d153e 0%, #18246a 100%);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .app-banner {
        grid-template-columns: 1.4fr 1fr;
        padding: 44px;
    }
}

.app-banner-label {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.app-banner-text h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .app-banner-text h3 {
        font-size: 32px;
    }
}

.app-banner-text p {
    color: var(--color-text-sub);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 520px;
}

.app-banner-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-border-light);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.app-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.app-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #06091c;
    box-shadow: 0 4px 18px var(--color-primary-glow);
    transform: translateY(-2px);
}

.app-btn:hover svg {
    fill: #06091c;
}

.app-banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-phone-mock {
    background: linear-gradient(135deg, #162058, #0c1236);
    border: 2px solid rgba(0, 210, 255, 0.3);
    border-radius: 28px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.app-phone-mock img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

/* ── Payments Strip ── */
.payments-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 480px) {
    .payments-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .payments-strip {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }
}

.payment-item {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.payment-item:hover {
    border-color: var(--color-border-glow);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.payment-item svg {
    width: 44px;
    height: 44px;
}

.payment-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-sub);
}

/* ── FAQ Accordion ── */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--color-border-glow);
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    user-select: none;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 13.5px;
    color: var(--color-text-sub);
    line-height: 1.65;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    opacity: 1;
    padding: 12px 20px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ── Providers Grid ── */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

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

@media (min-width: 768px) {
    .providers-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.provider-item {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.provider-item:hover {
    transform: translateY(-3px);
    border-color: var(--color-border-glow);
    background: var(--bg-card-hover);
}

.provider-logo svg {
    width: 44px;
    height: 44px;
}

.provider-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-sub);
}

/* ── VIP Loyalty Program Widget (Tabs & Panels) ── */
.vip-loyalty-widget {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.vip-tabs-nav {
    display: flex;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--color-border);
    scrollbar-width: none;
}

.vip-tabs-nav::-webkit-scrollbar {
    display: none;
}

.vip-tab-btn {
    flex: 1;
    min-width: 140px;
    padding: 16px 14px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--color-muted);
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.vip-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

.vip-tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: linear-gradient(to top, rgba(0, 210, 255, 0.08), transparent);
}

.vip-panels-wrap {
    padding: 24px;
}

.vip-panel {
    display: none;
    animation: vipFadeIn 0.35s ease forwards;
}

.vip-panel.active {
    display: block;
}

@keyframes vipFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.vip-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.vip-panel-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.badge-bronze { background: rgba(180, 83, 9, 0.2); color: #fdba74; border: 1px solid rgba(180, 83, 9, 0.4); }
.badge-silver { background: rgba(203, 213, 225, 0.15); color: #e2e8f0; border: 1px solid rgba(203, 213, 225, 0.3); }
.badge-gold { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.4); }
.badge-platinum { background: rgba(0, 210, 255, 0.2); color: #38bdf8; border: 1px solid rgba(0, 210, 255, 0.4); }

.vip-panel-header h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 0;
}

.vip-perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 640px) {
    .vip-perks-grid {
        grid-template-columns: 1fr;
    }
}

.vip-perk-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition);
}

.vip-perk-item:hover {
    border-color: var(--color-border-glow);
    background: rgba(0, 210, 255, 0.04);
}

.vip-perk-item strong {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
}

.vip-perk-item span {
    font-size: 12.5px;
    color: var(--color-text-sub);
}

/* ── Responsible Gaming Expandable Accordion ── */
.rg-accordion {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.rg-accordion:hover {
    border-color: var(--color-border-glow);
}

.rg-accordion-header {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.rg-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rg-icon-box {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rg-icon-box svg {
    width: 20px;
    height: 20px;
    fill: var(--color-emerald);
}

.rg-badge {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--color-emerald);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 2px;
}

.rg-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
}

.rg-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rg-toggle-text {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-primary);
}

.rg-chevron {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.rg-accordion.active .rg-chevron {
    transform: rotate(180deg);
}

.rg-accordion-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
}

.rg-accordion.active .rg-accordion-body {
    max-height: 400px;
    opacity: 1;
    padding: 18px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rg-desc {
    color: var(--color-text-sub);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.rg-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

@media (max-width: 640px) {
    .rg-features-grid {
        grid-template-columns: 1fr;
    }
}

.rg-feature-pill {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--color-text-sub);
}

.rg-feature-pill svg {
    width: 16px;
    height: 16px;
    fill: var(--color-emerald);
    flex-shrink: 0;
}

.rg-contact-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: var(--color-text-sub);
}

.rg-contact-row span {
    font-weight: 700;
    color: #ffffff;
}

/* ── Live Casino Games ── */
.live-games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .live-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .live-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.live-game-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.live-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-glow);
    box-shadow: var(--shadow-hover);
}

.live-game-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.live-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-indicator {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(244, 63, 94, 0.88);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.8px;
}

.live-game-info {
    padding: 16px 18px;
}

.live-game-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.live-game-info h4 a {
    color: #ffffff;
    transition: var(--transition);
}

.live-game-info h4 a:hover {
    color: var(--color-primary);
}

.live-game-info p {
    font-size: 12.5px;
    color: var(--color-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.live-stats {
    font-size: 12px;
    color: var(--color-emerald);
    font-weight: 700;
}

.live-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.live-stats svg {
    width: 14px;
    height: 14px;
    fill: var(--color-emerald);
}

/* ── Footer Bottom Promo Callout ── */
.footer-promo {
    background: linear-gradient(135deg, #0d153e 0%, #1a2777 50%, #0d153e 100%);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 32px 20px;
    text-align: center;
    max-width: 1280px;
    margin: 24px 16px 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .footer-promo {
        margin: 32px 24px 0;
    }
}

@media (min-width: 1328px) {
    .footer-promo {
        margin: 32px auto 0;
    }
}

.footer-promo h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .footer-promo h3 {
        font-size: 28px;
    }
}

.footer-promo p {
    color: var(--color-text-sub);
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT MODE OVERRIDES FOR INDEX PAGE
   ═══════════════════════════════════════════════════════════════ */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] .hero-title,
[data-theme="light"] .section-title,
[data-theme="light"] .section-heading,
[data-theme="light"] .winner-title,
[data-theme="light"] .cyber-title,
[data-theme="light"] .faq-question,
[data-theme="light"] .winner-player-name,
[data-theme="light"] .stat-num,
[data-theme="light"] .footer-promo h3,
[data-theme="light"] .game-title,
[data-theme="light"] .service-card h3,
[data-theme="light"] .promo-card h3,
[data-theme="light"] .news-card h3,
[data-theme="light"] .info-card h4,
[data-theme="light"] .app-banner-text h3 {
    color: #0f172a !important;
}

[data-theme="light"] .section-subtitle,
[data-theme="light"] .hero-desc,
[data-theme="light"] .winner-subtitle,
[data-theme="light"] .cyber-subtitle,
[data-theme="light"] .faq-answer,
[data-theme="light"] .feature-card p,
[data-theme="light"] .service-card p,
[data-theme="light"] .promo-card p,
[data-theme="light"] .testimonial-text,
[data-theme="light"] .app-banner-text p,
[data-theme="light"] .news-card p,
[data-theme="light"] .footer-promo p,
[data-theme="light"] .winner-stats-grid span {
    color: #334155;
}

/* ── Hero Split Section ── */
[data-theme="light"] .hero-box {
    background: linear-gradient(135deg, #ffffff 0%, #f4f7ff 50%, #eff6ff 100%);
    border: 1px solid rgba(2, 132, 199, 0.2);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), inset 0 1px 0 #ffffff;
}

[data-theme="light"] .hero-badge {
    background: rgba(2, 132, 199, 0.08);
    border-color: rgba(2, 132, 199, 0.25);
    color: #0284c7;
}

[data-theme="light"] .hero-stats-row {
    border-top-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .hero-stat-item .stat-num {
    color: #0f172a;
}

[data-theme="light"] .hero-stat-item .stat-label {
    color: #64748b;
}

[data-theme="light"] .btn-secondary-glow {
    background: #f1f5f9;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.14);
}

[data-theme="light"] .btn-secondary-glow:hover {
    background: rgba(2, 132, 199, 0.1);
    border-color: #0284c7;
    color: #0284c7;
}

[data-theme="light"] .hero-banner-card {
    background: #ffffff;
    border-color: rgba(2, 132, 199, 0.25);
    box-shadow: 0 16px 40px rgba(2, 132, 199, 0.12);
}

[data-theme="light"] .hero-banner-card .hero-banner-img {
    background: #f1f5f9;
}

[data-theme="light"] .feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .feature-icon-box {
    background: rgba(2, 132, 199, 0.1);
    border-color: rgba(2, 132, 199, 0.2);
}

[data-theme="light"] .feature-icon-box svg {
    fill: #0284c7;
}

/* ── Providers & Category Tabs ── */
[data-theme="light"] .provider-strip-wrapper {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .provider-pill {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
    color: #334155;
}

[data-theme="light"] .provider-pill:hover {
    background: rgba(2, 132, 199, 0.08);
    border-color: #0284c7;
    color: #0284c7;
}

[data-theme="light"] .category-tab {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    color: #334155;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .category-tab:hover {
    border-color: #0284c7;
    color: #0284c7;
}

[data-theme="light"] .category-tab.active {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    color: #ffffff;
    border-color: transparent;
}

/* ── Game Cards ── */
[data-theme="light"] .game-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .game-card:hover {
    box-shadow: 0 16px 36px rgba(2, 132, 199, 0.15), 0 0 0 1px rgba(2, 132, 199, 0.3);
}

[data-theme="light"] .game-meta {
    border-top-color: rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .game-provider {
    color: #64748b;
}

/* ── Live Winner Cards (Grid 2x3) ── */
[data-theme="light"] .winner-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .winner-card:hover {
    box-shadow: 0 16px 36px rgba(2, 132, 199, 0.15), 0 0 0 1px rgba(2, 132, 199, 0.35);
}

[data-theme="light"] .winner-card-header {
    border-bottom-color: rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .winner-time {
    color: #64748b;
}

[data-theme="light"] .winner-thumb-box {
    background: #f1f5f9;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .winner-game-provider {
    color: #64748b;
}

[data-theme="light"] .winner-stats-grid {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .stat-val-bet {
    color: #334155;
}

[data-theme="light"] .stat-val-profit {
    color: #059669;
    text-shadow: none;
}

[data-theme="light"] .winner-card-footer {
    border-top-color: rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .winner-footer-channel {
    color: #64748b;
}

/* ── Cyber Tournament Dashboard ── */
[data-theme="light"] .cyber-tournament-dashboard {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 50%, #eff6ff 100%);
    border-color: rgba(217, 119, 6, 0.35);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 0 25px rgba(217, 119, 6, 0.1);
}

[data-theme="light"] .cyber-dash-header {
    background: rgba(241, 245, 249, 0.7);
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .cyber-countdown-box {
    background: #ffffff;
    border-color: rgba(2, 132, 199, 0.25);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .timer-unit {
    background: #f1f5f9;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .timer-num {
    color: #0284c7;
    text-shadow: none;
}

[data-theme="light"] .timer-lbl {
    color: #64748b;
}

[data-theme="light"] .cyber-pool-card {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.08);
}

[data-theme="light"] .pool-amount {
    color: #0f172a;
    text-shadow: none;
}

[data-theme="light"] .cyber-progress-box {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .progress-lbl {
    color: #475569;
}

[data-theme="light"] .progress-track {
    background: #e2e8f0;
}

[data-theme="light"] .tier-item {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .tier-item:hover {
    background: #f8fafc;
    border-color: rgba(2, 132, 199, 0.3);
}

[data-theme="light"] .tier-name {
    color: #0f172a;
}

[data-theme="light"] .tier-reward {
    color: #b45309;
}

[data-theme="light"] .cyber-dash-right {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .leaderboard-header {
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .leaderboard-header h4 {
    color: #0f172a;
}

[data-theme="light"] .rank-card {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .rank-card:hover {
    background: #ffffff;
    border-color: rgba(2, 132, 199, 0.3);
}

[data-theme="light"] .rank-name {
    color: #0f172a;
}

[data-theme="light"] .rank-meta {
    color: #64748b;
}

[data-theme="light"] .rank-prize {
    color: #b45309;
}

[data-theme="light"] .leaderboard-footer {
    color: #64748b;
}

/* ── Testimonials, Promos, Services, News, App banner, FAQ ── */
[data-theme="light"] .trust-summary-score {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .score-rating {
    color: #0f172a;
}

[data-theme="light"] .score-desc {
    color: #475569;
}

[data-theme="light"] .testimonial-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .testi-highlight-badge {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

[data-theme="light"] .testi-meta-box {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .meta-val {
    color: #0f172a;
}

[data-theme="light"] .testimonial-text strong {
    color: #0f172a;
}

[data-theme="light"] .hl-money {
    color: #d97706 !important;
}

[data-theme="light"] .author-name {
    color: #0f172a;
}

[data-theme="light"] .avatar-badge-vip {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.4);
    color: #d97706;
}

[data-theme="light"] .testi-trust-strip {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .trust-stat-content strong {
    color: #0f172a;
}

[data-theme="light"] .trust-stat-content span {
    color: #475569;
}

[data-theme="light"] .quote-watermark {
    color: rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .testimonial-author strong {
    color: #0f172a;
}

[data-theme="light"] .promo-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .promo-badge {
    background: rgba(2, 132, 199, 0.1);
    color: #0284c7;
}

[data-theme="light"] .app-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-color: rgba(2, 132, 199, 0.25);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .app-btn {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .app-btn svg {
    fill: #0f172a;
}

[data-theme="light"] .app-phone-mock {
    background: #ffffff;
    border-color: rgba(2, 132, 199, 0.25);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .payment-item {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .payment-item span {
    color: #334155;
}

[data-theme="light"] .faq-item {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .faq-answer {
    border-top-color: rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .service-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .news-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .news-meta {
    color: #64748b;
}

[data-theme="light"] .footer-promo-box {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #eff6ff 100%);
    border-color: rgba(2, 132, 199, 0.25);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

/* ═══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE ENHANCEMENTS (<= 768px & <= 480px)
   ═══════════════════════════════════════════════════════════════ */

/* Tablets & Phones (<= 768px) */
@media (max-width: 768px) {
    .section {
        padding: 24px 16px;
    }

    .section-header {
        margin-bottom: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-title {
        font-size: 21px;
    }

    .title-icon {
        width: 26px;
        height: 26px;
    }

    .section-subtitle {
        font-size: 12.5px;
    }

    /* ── Hero Split Section ── */
    .hero-casino {
        padding: 16px 16px 20px;
    }

    .hero-box {
        padding: 20px 16px;
        border-radius: var(--radius-lg);
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .hero-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .hero-highlights {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 18px;
    }

    .highlight-item {
        padding: 6px 10px;
        gap: 6px;
        border-radius: var(--radius-sm);
    }

    .hl-icon {
        font-size: 14px;
    }

    .hl-text small {
        font-size: 8.5px;
    }

    .hl-text strong {
        font-size: 11px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-features {
        margin-top: 16px;
        gap: 10px;
    }

    .feature-card {
        padding: 14px 14px;
        border-radius: var(--radius-md);
        gap: 12px;
    }

    .feature-icon-box {
        width: 40px;
        height: 40px;
    }

    .feature-card h4 {
        font-size: 14px;
    }

    .feature-card p {
        font-size: 12px;
    }

    /* ── Categories & Providers ── */
    .categories-scroll {
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        gap: 8px;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .cat-tab {
        padding: 7px 13px;
        font-size: 12px;
    }

    /* ── Live Winner Cards (Grid 2x3) ── */
    .winner-cards-grid {
        gap: 12px;
    }

    .winner-card {
        padding: 14px 14px;
        border-radius: var(--radius-md);
        gap: 10px;
    }

    .winner-avatar {
        width: 32px;
        height: 32px;
        font-size: 12.5px;
    }

    .winner-name {
        font-size: 12.5px;
    }

    .multiplier-pill {
        font-size: 9.5px;
        padding: 2px 7px;
    }

    .winner-game-info {
        padding: 7px 9px;
        gap: 8px;
    }

    .game-thumb-box {
        width: 30px;
        height: 30px;
    }

    .game-title-text {
        font-size: 12px;
    }

    .winner-financials {
        padding: 6px 8px;
    }

    .fin-label {
        font-size: 9.5px;
    }

    .fin-val.fin-bet {
        font-size: 12px;
    }

    .fin-val.fin-profit {
        font-size: 15px;
    }

    .winner-card-footer {
        padding-top: 8px;
    }

    .verify-badge,
    .channel-tag {
        font-size: 10px;
    }

    /* ── Cyber Tournament Dashboard ── */
    .cyber-tournament-dashboard {
        border-radius: var(--radius-lg);
    }

    .cyber-dash-header {
        padding: 16px 14px 14px;
        gap: 12px;
    }

    .cyber-title {
        font-size: 20px;
        line-height: 1.25;
    }

    .cyber-subtitle {
        font-size: 12px;
    }

    .cyber-countdown-box {
        width: 100%;
        padding: 10px 12px;
    }

    .countdown-timer {
        justify-content: center;
        width: 100%;
    }

    .cyber-dash-body {
        padding: 16px 12px;
        gap: 18px;
    }

    .cyber-prize-showcase {
        padding: 14px 12px;
        gap: 12px;
        border-radius: var(--radius-md);
    }

    .trophy-glow-icon {
        width: 44px;
        height: 44px;
        border-radius: var(--radius-sm);
    }

    .trophy-glow-icon svg {
        width: 22px;
        height: 22px;
    }

    .prize-sub-title {
        font-size: 9.5px;
    }

    .prize-big-number {
        font-size: 22px;
    }

    .prize-guarantee {
        font-size: 10.5px;
    }

    .cyber-progress-box {
        padding: 10px 12px;
    }

    .progress-info-row {
        font-size: 11px;
    }

    .tier-prize-row {
        padding: 8px 10px;
        font-size: 11.5px;
    }

    .cyber-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .btn-cyber-primary {
        width: 100%;
        justify-content: center;
        padding: 11px 18px;
        font-size: 13px;
    }

    .btn-cyber-secondary {
        width: 100%;
        text-align: center;
        display: block;
        font-size: 12px;
    }

    .cyber-leaderboard-panel {
        border-radius: var(--radius-md);
    }

    .cyber-lb-list {
        max-height: 300px;
        padding: 8px;
    }

    .cyber-lb-item {
        padding: 8px 10px;
    }

    .cyber-num {
        font-size: 11.5px;
    }

    .lb-user-info strong {
        font-size: 11.5px;
    }

    .lb-user-info small {
        font-size: 10px;
    }

    .lb-prize-tag {
        font-size: 11px;
    }

    /* ── VIP Testimonials ── */
    .testimonial-header-wrap {
        margin-bottom: 16px;
        gap: 12px;
    }

    .trust-summary-score {
        width: 100%;
        padding: 10px 12px;
    }

    .testimonials-grid {
        gap: 14px;
    }

    .testimonial-card {
        padding: 18px 14px;
        border-radius: var(--radius-lg);
    }

    .testimonial-text {
        font-size: 12.5px;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .testi-meta-box {
        padding: 8px 10px;
        gap: 8px;
        margin-bottom: 14px;
    }

    .meta-label {
        font-size: 9.5px;
    }

    .meta-val {
        font-size: 11px;
    }

    .author-name {
        font-size: 13px;
    }

    .author-location {
        font-size: 10.5px;
    }

    .testi-trust-strip {
        padding: 14px 12px;
        gap: 12px;
        margin-top: 18px;
        border-radius: var(--radius-md);
    }

    .trust-stat-icon {
        width: 32px;
        height: 32px;
    }

    .trust-stat-icon svg {
        width: 15px;
        height: 15px;
    }

    .trust-stat-content strong {
        font-size: 13.5px;
    }

    .trust-stat-content span {
        font-size: 10px;
    }

    /* ── Promos & App Banner ── */
    .promos-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .promo-card {
        padding: 18px 14px;
        border-radius: var(--radius-lg);
    }

    .app-banner {
        padding: 22px 14px;
        border-radius: var(--radius-lg);
        gap: 18px;
    }

    .app-banner-text h3 {
        font-size: 20px;
    }

    .app-banner-text p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .app-banner-btns {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .app-btn {
        width: 100%;
        justify-content: center;
        padding: 9px 16px;
        font-size: 12.5px;
    }

    .app-phone-mock {
        border-radius: 20px;
        padding: 16px;
    }

    /* ── FAQ ── */
    .faq-question {
        padding: 13px 14px;
        font-size: 13.5px;
    }

    .faq-answer {
        padding: 0 14px 13px;
        font-size: 12.5px;
    }

    /* ── Footer Promo Box ── */
    .footer-promo-box {
        padding: 20px 16px;
        border-radius: var(--radius-lg);
    }

    .footer-promo {
        margin: 20px 16px 0;
        padding: 24px 16px;
        border-radius: var(--radius-lg);
    }

    .footer-promo h3 {
        font-size: 18px;
    }

    .footer-promo p {
        font-size: 12.5px;
    }
}

/* Extra Small Phones (<= 420px) */
@media (max-width: 420px) {
    .section {
        padding: 20px 16px;
    }

    .hero-casino {
        padding: 14px 16px 18px;
    }

    .section-title {
        font-size: 18px;
    }

    .hero-title {
        font-size: 21px;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .tier-prize-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .timer-unit {
        min-width: 32px;
        padding: 3px 4px;
    }

    .timer-num {
        font-size: 14px;
    }

    .timer-sep {
        font-size: 13px;
    }

    .testi-trust-strip {
        grid-template-columns: 1fr;
    }

    .small-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Ultra Small Phones (<= 360px) */
@media (max-width: 360px) {
    .section {
        padding: 18px 12px;
    }

    .hero-casino {
        padding: 12px 12px 16px;
    }

    .footer-promo {
        margin: 16px 12px 0;
        padding: 20px 12px;
    }

    .categories-scroll {
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ── Light Mode Overrides for VIP & RG Accordion ── */
[data-theme="light"] .vip-tabs-nav {
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .vip-tab-btn:hover {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .vip-tab-btn.active {
    background: linear-gradient(to top, rgba(2, 132, 199, 0.1), transparent);
}

[data-theme="light"] .vip-panel-header h4 {
    color: var(--color-text-main);
}

[data-theme="light"] .vip-perk-item {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .rg-title {
    color: var(--color-text-main);
}

[data-theme="light"] .rg-feature-pill {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .rg-contact-row span {
    color: var(--color-text-main);
}

@media (max-width: 640px) {
    .rg-accordion-header {
        padding: 14px 16px;
    }
    .rg-title {
        font-size: 13.5px;
    }
    .rg-accordion.active .rg-accordion-body {
        padding: 14px 16px 18px;
    }
    .vip-tab-btn {
        min-width: 120px;
        padding: 12px 10px;
        font-size: 12px;
    }
    .vip-panels-wrap {
        padding: 16px;
    }
}



