/* Modern Emerald Casino Theme */

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(0, 201, 167, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 180, 216, 0.05) 0%, transparent 60%);
    overflow: hidden;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particleFloat 10s infinite ease-in-out;
    opacity: 0.4;
}

.particle:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(2) {
    top: 35%;
    left: 85%;
    animation-delay: 2s;
    background: var(--secondary-color);
}

.particle:nth-child(3) {
    top: 65%;
    left: 25%;
    animation-delay: 4s;
    width: 3px;
    height: 3px;
}

.particle:nth-child(4) {
    top: 75%;
    left: 65%;
    animation-delay: 1s;
    background: var(--accent-color);
    width: 5px;
    height: 5px;
}

.particle:nth-child(5) {
    top: 25%;
    left: 55%;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-80px) scale(1.5);
        opacity: 0.7;
        box-shadow: 0 0 15px currentColor;
    }
}

/* Hero Split Layout */
.hero-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    flex: 1.2;
    text-align: left;
    animation: fadeInLeft 1s ease-out;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-start;
    animation: logoPulse 4s ease-in-out infinite;
}

.hero-logo-img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 201, 167, 0.4));
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(0, 201, 167, 0.4)); }
    50% { transform: scale(1.03); filter: drop-shadow(0 0 25px rgba(0, 201, 167, 0.6)); }
}

.hero-text-content p {
    max-width: 550px;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.2s both;
    font-size: 1.05rem;
    line-height: 1.9;
}

.hero-visual {
    flex: 0.8;
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-visual-inner {
    position: relative;
}

/* Floating Glass Card */
.floating-glass-card {
    background: rgba(16, 23, 42, 0.8);
    border: 1px solid rgba(0, 201, 167, 0.2);
    border-radius: 24px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(0, 201, 167, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    animation: cardFloat 7s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(0.5deg); }
    66% { transform: translateY(-6px) rotate(-0.3deg); }
}

.floating-glass-card::before {
    content: '';
    position: absolute;
    top: -100%; left: -100%; width: 300%; height: 300%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 201, 167, 0.03), transparent, rgba(99, 102, 241, 0.03), transparent);
    animation: cardRotate 12s linear infinite;
}

@keyframes cardRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Floating Elements */
.floating-element {
    position: absolute;
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.5;
    animation: floatBounce 5s ease-in-out infinite;
    background: rgba(0, 201, 167, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(0, 201, 167, 0.15);
}

.floating-element.element-1 {
    top: -15px;
    right: -15px;
    animation-delay: 0s;
}

.floating-element.element-2 {
    bottom: 40px;
    left: -25px;
    animation-delay: 1.5s;
    color: var(--secondary-color);
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.15);
}

.floating-element.element-3 {
    top: 45%;
    right: -30px;
    animation-delay: 3s;
    color: var(--accent-color);
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.15);
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(3deg); }
    75% { transform: translateY(8px) rotate(-3deg); }
}

/* Animations */
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jackpot-amount {
    font-size: 3rem;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
}

/* Badge */
.badge {
    background: rgba(0, 201, 167, 0.08);
    border: 1px solid rgba(0, 201, 167, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
    border-radius: 50px;
    animation: badgePulse 3s ease-in-out infinite;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 201, 167, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(0, 201, 167, 0); }
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: #0a0e1a;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 201, 167, 0.35);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 201, 167, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(0, 201, 167, 0.4);
    padding: 1rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(0, 201, 167, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 201, 167, 0.2);
    border-color: var(--primary-color);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 201, 167, 0.1);
    padding-top: 2rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h4 {
    font-size: 2.2rem;
    margin-bottom: 0;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
}

.stat-item p {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
    color: var(--text-muted);
}

/* ===== SECTIONS SHARED ===== */
.content-section {
    padding: 6rem 0;
    position: relative;
}
.section-prefix {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* ===== STEPS GRID (How to Play) ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 201, 167, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 201, 167, 0.05);
}

.step-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 201, 167, 0.08);
    border: 2px solid rgba(0, 201, 167, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon-wrap {
    background: rgba(0, 201, 167, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 201, 167, 0.2);
    transform: scale(1.08);
}

.step-icon-wrap i {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-primary);
    color: #0a0e1a;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    box-shadow: 0 4px 12px rgba(0, 201, 167, 0.3);
}

.step-connector {
    display: none;
}

.step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

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

/* Connector line between steps (desktop only) */
@media (min-width: 993px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 55px;
        right: -2rem;
        width: calc(2rem);
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            rgba(0, 201, 167, 0.3) 0px,
            rgba(0, 201, 167, 0.3) 6px,
            transparent 6px,
            transparent 12px
        );
        z-index: 1;
    }
    .step-card:last-child .step-connector {
        display: none;
    }
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .step-card {
        padding: 1.5rem 1.2rem;
    }
}

/* ===== VIP TIERS ===== */
.vip-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.vip-pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vip-pricing-card:hover {
    border-color: rgba(0, 201, 167, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vip-pricing-card.featured-tier {
    background: linear-gradient(145deg, rgba(16, 23, 42, 0.9), rgba(16, 23, 42, 1));
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 201, 167, 0.15);
    transform: scale(1.05);
}

.vip-pricing-card.featured-tier:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 201, 167, 0.25);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #0a0e1a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 201, 167, 0.3);
}

.vip-card-header {
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.vip-tier-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.vip-pricing-card h3 {
    font-size: 2rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vip-level {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-top: 5px;
}

.vip-points {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.vip-perks {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

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

.vip-perks li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 3px;
}

.vip-action {
    text-align: center;
    margin-top: auto;
}

.vip-action .btn-primary, .vip-action .btn-secondary {
    width: 100%;
    justify-content: center;
}

/* ===== GAME GRID ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.game-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s ease;
    height: 320px;
}

.game-card:hover {
    border-color: rgba(0, 201, 167, 0.4);
    box-shadow: 0 15px 35px rgba(0, 201, 167, 0.2);
    transform: translateY(-8px);
}

.game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.game-card:hover .game-card-img {
    opacity: 1;
    transform: scale(1.1);
}

.game-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(10, 14, 26, 1) 0%, rgba(10, 14, 26, 0.8) 50%, transparent 100%);
    transform: translateY(30px);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

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

.game-card-title {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.game-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.4s ease;
    margin-bottom: 1rem;
}

.game-card:hover .game-card-desc {
    opacity: 1;
}

.game-card-play {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover .game-card-play {
    opacity: 1;
}

/* ===== TIMELINE (How to Play) ===== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::before {
    content:''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0.3;
}
.timeline-item {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 4rem;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; text-align: right; }
.timeline-content {
    width: 45%; 
    background: var(--bg-card); 
    padding: 2.5rem; 
    border-left: 3px solid var(--primary-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.timeline-item:nth-child(even) .timeline-content {
    border-left: none; border-right: 3px solid var(--secondary-color);
}
.timeline-content h3 { font-size: 1.4rem; margin-bottom: 10px; color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; }
.timeline-content p { color: var(--text-muted); font-size: 0.9rem; }

.timeline-num {
    width: 55px; height: 55px; 
    background: var(--bg-dark); 
    border: 2px solid var(--primary-color);
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif; font-weight: 800; 
    color: var(--primary-color); font-size: 1.3rem;
    position: absolute; left: 50%; transform: translateX(-50%); z-index: 2;
    box-shadow: 0 0 20px rgba(0, 201, 167, 0.2), inset 0 0 15px rgba(0, 201, 167, 0.05);
}

/* ===== LIVE WINS TICKER ===== */
.live-wins-bar {
    background: rgba(0, 201, 167, 0.03);
    border-top: 1px solid rgba(0, 201, 167, 0.1);
    border-bottom: 1px solid rgba(0, 201, 167, 0.1);
    padding: 0.8rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}
.live-wins-label {
    background: var(--gradient-primary);
    color: #0a0e1a;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    z-index: 10;
    border-radius: 0 50px 50px 0;
    font-size: 0.8rem;
}
.wins-track-container {
    padding-left: 220px;
    width: 100%;
    overflow: hidden;
}
.wins-track {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.win-ticket {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
    background: rgba(16, 23, 42, 0.8);
    padding: 6px 18px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    font-size: 0.85rem;
}
.win-user { color: var(--text-muted); font-weight: 500; }
.win-amount { color: var(--primary-color); font-weight: 700; font-family: 'Outfit', sans-serif; font-size: 1rem;}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== WHY CHOOSE & FEATURES ===== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    text-align: left;
    margin-top: 4rem;
}

.why-card {
    background: linear-gradient(145deg, rgba(16, 23, 42, 0.6), rgba(16, 23, 42, 0.9));
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 24px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    border-color: rgba(0, 201, 167, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 40px rgba(0, 201, 167, 0.05);
}

.why-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.why-card > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.why-card-list {
    color: var(--text-main);
    font-size: 0.95rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.why-card-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-card-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.why-card-payment {
    display: flex;
    gap: 1.5rem;
    font-size: 2rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== EVENT BANNER ===== */
.event-banner-card {
    background: linear-gradient(135deg, rgba(16, 23, 42, 0.9), rgba(16, 23, 42, 0.95));
    border: 1px solid rgba(0, 201, 167, 0.2);
    border-radius: 24px;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 50px rgba(0, 201, 167, 0.05);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.event-banner-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(0, 201, 167, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.event-banner-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.event-banner-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.event-banner-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.event-banner-timer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    background: rgba(10, 14, 26, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Countdown */
.countdown-flex {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-family: 'Outfit', sans-serif;
}
.countdown-item {
    border: 1px solid rgba(0, 201, 167, 0.2);
    padding: 15px 20px;
    background: rgba(16, 23, 42, 0.8);
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
    box-shadow: inset 0 0 15px rgba(0, 201, 167, 0.05);
}
.countdown-num {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}
/* Features Grid */
.features-grid-modern {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.feature-box {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.feature-box::before {
    content:''; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px; 
    background: var(--gradient-primary);
    transition: 0.4s ease; transform: translateX(-50%);
    border-radius: 3px;
}
.feature-box:hover::before { width: 60%; }
.feature-box:hover { 
    background: rgba(16, 23, 42, 0.95); 
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.feature-icon i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.feature-box h3 { font-size: 1.2rem; margin-bottom: 1rem; color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; }
.feature-box p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ===== FOOTER BANNER ===== */
.footer-register-banner {
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.08), rgba(99, 102, 241, 0.08));
    border-top: 1px solid rgba(0, 201, 167, 0.15);
    border-bottom: 1px solid rgba(0, 201, 167, 0.15);
    padding: 50px 0;
    margin-top: 5rem;
}
.footer-register-banner .container {
    display: flex; justify-content: space-between; align-items: center;
}
.footer-register-banner h3 { 
    font-size: 1.6rem; 
    margin: 0; 
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== PROVIDERS TRACK ===== */
.providers-track-container { width: 100%; overflow: hidden; white-space: nowrap; margin-bottom: -10px; }
.providers-track { display: flex; gap: 4rem; animation: marquee 35s linear infinite; align-items: center; }
.provider-logo { 
    color: var(--text-muted); font-size: 1.3rem; font-weight: 600; text-transform: uppercase; 
    font-family: 'Poppins', sans-serif; display: flex; align-items: center; gap: 10px; 
    opacity: 0.4; transition: 0.4s; 
    background: rgba(16, 23, 42, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.03);
}
.provider-logo i { color: var(--primary-color); }
.provider-logo:hover { 
    opacity: 1; color: #fff; 
    background: rgba(0, 201, 167, 0.08);
    border-color: rgba(0, 201, 167, 0.15);
}

/* ===== APP SECTION ===== */
.mobile-promo-card {
    background: linear-gradient(135deg, rgba(16, 23, 42, 0.95), rgba(10, 14, 26, 0.98));
    border: 1px solid rgba(0, 201, 167, 0.15);
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(0, 201, 167, 0.03);
}

.mobile-promo-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 60%; height: 100%;
    background: radial-gradient(ellipse at center right, rgba(0, 201, 167, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mobile-promo-text {
    position: relative;
    z-index: 2;
}

.mobile-promo-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mobile-promo-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.phone-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.phone-mockup {
    position: relative;
    width: 250px;
    height: 500px;
    background: rgba(16, 23, 42, 0.6);
    border: 8px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 201, 167, 0.2);
    backdrop-filter: blur(10px);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.phone-mockup i {
    font-size: 8rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 20px rgba(0, 201, 167, 0.4));
}

.floating-badge { 
    position: absolute; 
    background: rgba(16, 23, 42, 0.9); 
    color: var(--primary-color); 
    padding: 12px 24px; 
    border: 1px solid rgba(0, 201, 167, 0.3); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); 
    font-weight: 600; 
    border-radius: 50px; 
    z-index: 5; 
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}
.floating-badge.badge-1 { top: 15%; left: -30px; animation: float 4s ease-in-out infinite; }
.floating-badge.badge-2 { bottom: 15%; right: -30px; animation: float 4s ease-in-out infinite 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* ===== FAQ SECTION ===== */
.faq-grid { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { 
    background: var(--bg-card); 
    border: 1px solid rgba(255,255,255,0.04); 
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(0, 201, 167, 0.1);
}
.faq-question { 
    padding: 1.3rem 1.5rem; color: #fff; font-size: 1rem; cursor: pointer; 
    display: flex; justify-content: space-between; align-items: center; 
    font-weight: 600; transition: 0.3s; 
    font-family: 'Outfit', sans-serif;
}
.faq-question:hover { color: var(--primary-color); background: rgba(0, 201, 167, 0.03); }
.faq-answer { 
    padding: 0 1.5rem; max-height: 0; overflow: hidden; 
    transition: max-height 0.4s ease, padding 0.4s ease; 
    color: var(--text-muted); 
    line-height: 1.8;
}
.faq-item.active .faq-question { 
    color: var(--primary-color); 
    border-bottom: 1px solid rgba(255,255,255,0.04); 
}
.faq-item.active .faq-answer { padding: 1.5rem; max-height: 500px; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--accent-color); transition: 0.3s; }

/* ===== MOBILE ADAPTATIONS ===== */
@media(max-width: 992px) {
    .hero { padding-top: 110px; padding-bottom: 3rem; }
    .hero-split { flex-direction: column; text-align: center; gap: 2.5rem; }
    .hero-text-content { text-align: center; max-width: 680px; margin: 0 auto; }
    .hero-logo { justify-content: center; }
    .hero-text-content p { margin: 0 auto 1.5rem; }
    .hero-actions { justify-content: center; gap: 1rem; }
    .hero-stats { justify-content: center; gap: 1.5rem; }
    
    .floating-element { display: none; }
    .floating-glass-card { padding: 2rem 1.5rem; margin: 0 auto; max-width: 480px; }
    .floating-glass-card h2.jackpot-amount { font-size: 2.2rem; }

    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    
    .vip-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 2rem; }
    .vip-pricing-card.featured-tier { transform: none; }
    .vip-pricing-card.featured-tier:hover { transform: translateY(-8px); }
    
    .event-banner-card { flex-direction: column; text-align: center; padding: 2.5rem 2rem; gap: 2rem; }
    .event-banner-content { text-align: center; }
    .event-banner-content .section-prefix { text-align: center !important; }
    .event-banner-timer-wrap { width: 100%; max-width: 480px; }
    
    .mobile-promo-card { grid-template-columns: 1fr; padding: 3rem 2rem; text-align: center; gap: 2.5rem; }
    .mobile-promo-text h2, .mobile-promo-text p { text-align: center !important; }
    .mobile-promo-text .section-prefix { text-align: center !important; }
    .mobile-promo-text div { justify-content: center; }
    
    .why-choose-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .features-grid-modern { grid-template-columns: 1fr; gap: 1.5rem; }
    .news-split-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .timeline::before { left: 0; }
    .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; text-align: left; align-items: flex-start; padding-left: 45px; margin-bottom: 2.5rem; }
    .timeline-content { width: 100%; border-left: 3px solid var(--primary-color); border-right: none !important; padding: 1.5rem; border-radius: 12px; }
    .timeline-num { left: 0; transform: translateX(-50%); width: 40px; height: 40px; font-size: 1.1rem; }
    
    .live-wins-label { position: relative; display: block; text-align: center; z-index: 10; padding: 10px; width: 100%; border-bottom: 1px solid var(--border-color); border-radius: 0; }
    .wins-track-container { padding-left: 0; padding-top: 8px; width: 100%; }
    .live-wins-bar { flex-direction: column; padding: 0; }
    .wins-track { gap: 1.5rem; animation: marquee 18s linear infinite; }
    
    .footer-register-banner .container { flex-direction: column; text-align: center; gap: 1.5rem; }
}

@media(max-width: 768px) {
    .content-section { padding: 3.5rem 0; }
    
    .hero { padding-top: 95px; padding-bottom: 2.5rem; }
    .hero h1 { font-size: clamp(2rem, 7vw, 2.7rem); }
    .hero-stats { 
        display: grid; 
        grid-template-columns: repeat(3, 1fr); 
        gap: 0.75rem; 
        width: 100%; 
        max-width: 480px; 
        margin: 2rem auto 0;
        padding-top: 1.5rem;
    }
    .stat-item { padding: 0.5rem; }
    .stat-item h4 { font-size: 1.35rem; }
    .stat-item p { font-size: 0.75rem; white-space: nowrap; }
    
    .why-card { padding: 1.75rem 1.25rem; }
    
    .countdown-flex { 
        display: grid; 
        grid-template-columns: repeat(4, 1fr); 
        gap: 0.5rem; 
        width: 100%; 
    }
    .countdown-item { 
        min-width: 0; 
        padding: 10px 4px; 
        border-radius: 12px; 
    }
    .countdown-item span.countdown-num { font-size: 1.35rem !important; }
    .countdown-item span.countdown-label { font-size: 0.65rem; letter-spacing: 0; }
    
    .games-grid { gap: 0.85rem; }
    .game-card { height: 260px; border-radius: 16px; }
    .game-card-content { padding: 1.25rem 0.85rem 0.85rem; }
    .game-card-title { font-size: 1.05rem; }
    .game-card-desc { display: none; }
    .game-card-play { opacity: 1; margin-top: 0.5rem; }
    
    .mobile-promo-card { padding: 2.25rem 1.25rem; border-radius: 20px; }
    .phone-mockup { 
        width: 210px; 
        height: 380px; 
        border-width: 6px; 
        border-radius: 32px; 
        transform: none; 
        margin-top: 0;
    }
    .phone-mockup i { font-size: 5.5rem; }
    .floating-badge { padding: 8px 14px; font-size: 0.78rem; }
    .floating-badge.badge-1 { left: -5px; top: 12%; }
    .floating-badge.badge-2 { right: -5px; bottom: 12%; }
    
    .payment-trust-bar { 
        flex-direction: column !important; 
        text-align: center; 
        gap: 1rem; 
        padding-top: 1.5rem !important;
        margin-top: 2.5rem !important;
    }
    .payment-trust-bar > div { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 1.2rem !important; 
    }
}

@media(max-width: 576px) {
    .content-section { padding: 2.75rem 0; }
    
    .hero h1 { font-size: 2.1rem; line-height: 1.2; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 340px; margin-left: auto; margin-right: auto; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; padding: 0.85rem 1.25rem; }
    
    .floating-glass-card { padding: 1.5rem 1rem; border-radius: 18px; }
    .floating-glass-card h2.jackpot-amount { font-size: 1.55rem; white-space: normal; }
    
    .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
    .step-card { padding: 1.5rem 1.25rem; border-radius: 16px; }
    
    .vip-pricing-card { padding: 2rem 1.25rem; border-radius: 18px; }
    .vip-tier-icon { font-size: 3rem; margin-bottom: 0.75rem; }
    .vip-pricing-card h3 { font-size: 1.6rem; }
    .vip-action { width: 100%; }
    .vip-action .btn-primary, .vip-action .btn-secondary { width: 100%; display: block; }
    
    .event-banner-card { padding: 1.75rem 1rem; border-radius: 18px; }
    .event-banner-timer-wrap { padding: 1.25rem 0.85rem; border-radius: 16px; }
    
    .mobile-promo-card { padding: 1.75rem 1rem; border-radius: 18px; }
    .mobile-promo-text h2 { font-size: 1.75rem; }
    .mobile-promo-text div { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
    .mobile-promo-text .btn-primary, .mobile-promo-text .btn-secondary { width: 100%; justify-content: center; }
    
    .footer-register-banner { padding: 2rem 1rem; border-radius: 18px; }
    .footer-register-banner h3 { font-size: 1.25rem; }
    .footer-register-banner .btn-signup { width: 100%; max-width: 280px; justify-content: center; }
    
    .section-title { font-size: 1.75rem !important; }
}

@media(max-width: 380px) {
    .games-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    .game-card { height: 240px; }
    .hero-stats { grid-template-columns: 1fr; gap: 0.5rem; }
    .countdown-flex { grid-template-columns: repeat(2, 1fr); }
}

/* ===== LIGHT MODE OVERRIDES (Gold & Champagne Luxury) ===== */
[data-theme="light"] h1, 
[data-theme="light"] h2, 
[data-theme="light"] h3, 
[data-theme="light"] h4, 
[data-theme="light"] .section-title,
[data-theme="light"] .hero-text-content h1,
[data-theme="light"] .hero-text-content h1 span {
    color: var(--text-main) !important;
    -webkit-text-fill-color: var(--text-main) !important;
}

[data-theme="light"] .floating-glass-card span {
    color: var(--text-main) !important;
}

[data-theme="light"] .floating-glass-card {
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid rgba(217, 119, 6, 0.25);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.08);
}

[data-theme="light"] .floating-glass-card p {
    color: var(--text-main);
}

[data-theme="light"] .floating-element {
    background: rgba(217, 119, 6, 0.08);
    border-color: rgba(217, 119, 6, 0.2);
    color: var(--primary-color);
}

[data-theme="light"] .floating-element.element-2 {
    color: var(--secondary-color);
    background: rgba(180, 83, 9, 0.08);
    border-color: rgba(180, 83, 9, 0.2);
}

[data-theme="light"] .vip-pricing-card {
    background: #ffffff;
    border: 1px solid rgba(217, 119, 6, 0.18);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.03);
}

[data-theme="light"] .vip-pricing-card.featured-tier {
    background: linear-gradient(145deg, #fef9ed, #ffffff);
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(217, 119, 6, 0.15);
}

[data-theme="light"] .vip-pricing-card h3 {
    color: var(--text-main);
}

[data-theme="light"] .why-card {
    background: linear-gradient(145deg, #ffffff, #faf5ec);
    border: 1px solid rgba(217, 119, 6, 0.18);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.04);
}

[data-theme="light"] .why-card h3 {
    color: var(--text-main);
}

[data-theme="light"] .why-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.12);
}

[data-theme="light"] .event-banner-card {
    background: linear-gradient(135deg, #ffffff, #fdf7ec);
    border: 1px solid rgba(217, 119, 6, 0.25);
    box-shadow: 0 20px 45px rgba(217, 119, 6, 0.08);
}

[data-theme="light"] .event-banner-card h2 {
    color: var(--text-main) !important;
}

[data-theme="light"] .event-banner-timer-wrap {
    background: rgba(255, 253, 248, 0.95);
    border: 1px solid rgba(217, 119, 6, 0.22);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.06);
}

[data-theme="light"] .countdown-item {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.04);
}

[data-theme="light"] .mobile-promo-card {
    background: linear-gradient(135deg, #ffffff, #faf4e8);
    border: 1px solid rgba(217, 119, 6, 0.25);
    box-shadow: 0 25px 50px rgba(217, 119, 6, 0.07);
}

[data-theme="light"] .mobile-promo-text h2 {
    color: var(--text-main) !important;
}

[data-theme="light"] .phone-mockup {
    background: rgba(255, 253, 248, 0.85);
    border: 8px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.1), inset 0 0 20px rgba(217, 119, 6, 0.08);
}

[data-theme="light"] .phone-mockup::before,
[data-theme="light"] .phone-mockup::after {
    background: rgba(217, 119, 6, 0.25);
}

[data-theme="light"] .floating-badge {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.09);
}

[data-theme="light"] .faq-item {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.15);
}

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

[data-theme="light"] .footer-register-banner {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(245, 158, 11, 0.05));
    border-color: rgba(217, 119, 6, 0.2);
}

[data-theme="light"] .timeline-content {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.25) !important;
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.04);
}

[data-theme="light"] .timeline-item:nth-child(even) .timeline-content {
    border-color: rgba(180, 83, 9, 0.25) !important;
}

[data-theme="light"] .timeline-content h3 {
    color: var(--text-main);
}

[data-theme="light"] .timeline-num {
    background: #ffffff;
    border-color: var(--primary-color);
}

[data-theme="light"] .step-card {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.18);
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.03);
}

[data-theme="light"] .step-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.12);
}

[data-theme="light"] .step-card h3 {
    color: var(--text-main);
}

[data-theme="light"] .game-card {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.18);
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.04);
}

[data-theme="light"] .game-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.2);
}

[data-theme="light"] .game-card-content {
    background: linear-gradient(to top, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 70%, transparent 100%);
}

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

[data-theme="light"] .live-wins-bar {
    background: rgba(217, 119, 6, 0.06);
    border-color: rgba(217, 119, 6, 0.2);
}

[data-theme="light"] .win-ticket {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.22);
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.05);
}

[data-theme="light"] .win-ticket span[style*="#fff"] {
    color: var(--text-main) !important;
}

[data-theme="light"] .btn-secondary {
    background: rgba(217, 119, 6, 0.08);
    border-color: rgba(217, 119, 6, 0.3);
    color: var(--primary-color);
}

[data-theme="light"] .btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

[data-theme="light"] .badge {
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary-color);
    border-color: rgba(217, 119, 6, 0.25);
}