/* ===============
   HERO
   =============== */
.hero {
    position: relative;
    padding: 200px 0 160px;
    overflow: hidden;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #050508 0%, var(--bg) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.03) 2px,
            rgba(0, 255, 255, 0.03) 4px
        );
    pointer-events: none;
}

.hero::after {
    content: '🎲 🎰 💰 🎲 🎰 💰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    color: rgba(0, 255, 255, 0.03);
    pointer-events: none;
    letter-spacing: 40px;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 0, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg);
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--speed);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.7);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 48px;
    background: transparent;
    color: #fff;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--speed);
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 255, 0.05);
}

.hero-right {
    position: relative;
}

.hero-card {
    background: linear-gradient(145deg, rgba(26, 26, 37, 0.9) 0%, rgba(18, 18, 26, 0.95) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.hero-logo {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.5));
}

/* ===============
   SECTION TITLE
   =============== */
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin: 100px 0 60px;
    position: relative;
    letter-spacing: -0.5px;
    color: #fff;
}

.section-title::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* ===============
   GAME GRID
   =============== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--speed);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.2), transparent);
    transition: height var(--speed);
    z-index: 1;
}

.game-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

.game-card:hover::before {
    height: 60%;
}

.game-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.game-card > a {
    display: block;
}

.game-card-content {
    padding: 28px;
    position: relative;
    z-index: 2;
}

.game-card-content h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
    letter-spacing: 0.5px;
}

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

/* ===============
   NEWS GRID
   =============== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 36px;
    margin-bottom: 100px;
}

.news-card {
    background: linear-gradient(145deg, rgba(26, 26, 37, 0.95) 0%, rgba(18, 18, 26, 0.95) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all var(--speed);
    position: relative;
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity var(--speed);
}

.news-card:hover {
    transform: translateY(-14px);
    border-color: transparent;
    box-shadow: 0 30px 80px rgba(0, 255, 255, 0.15);
}

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

.news-card > a {
    display: block;
    padding: 0;
}

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

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

.news-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    padding: 24px 28px 12px;
}

.news-card h4 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding: 0 28px;
    color: var(--text);
    transition: color var(--speed);
    line-height: 1.4;
}

.news-card:hover h4 { 
    color: var(--primary); 
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
    padding: 0 28px 28px;
}

/* ===============
   RESPONSIVE
   =============== */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero { padding: 140px 0 100px; }
    .section-title { margin: 80px 0 40px; }
    .game-grid, .news-grid { gap: 20px; margin-bottom: 80px; }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-hero, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero { padding: 120px 0 80px; }
    .game-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .hero-card {
        padding: 36px 24px;
    }
    .hero-left {
        padding: 0 4px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 10px 20px;
    }
    .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

/* ===============
   STATS BAR
   =============== */
.stats-bar {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(255, 0, 255, 0.06) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
}

.stat-number {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-head);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===============
   CATEGORIES STRIP
   =============== */
.categories-strip {
    padding: 0 0 100px;
}

.categories-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    padding-bottom: 0;
}

.category-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all var(--speed);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-chip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.category-chip:hover::before {
    opacity: 1;
    top: -30%;
    left: -30%;
}

.category-chip:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.15);
}

.category-chip img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(0, 255, 255, 0.3);
    transition: all var(--speed);
    position: relative;
    z-index: 1;
}

.category-chip:hover img {
    transform: scale(1.15) rotate(5deg);
    border-color: var(--primary);
}

.category-chip span {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--speed);
    position: relative;
    z-index: 1;
}

.category-chip:hover span { 
    color: var(--primary);
}

/* ===============
   TRENDING SECTION
   =============== */
.trending-section {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.06) 0%, rgba(10, 10, 15, 1) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.trending-section::before {
    content: '🔥';
    position: absolute;
    top: 15%;
    right: 10%;
    font-size: 180px;
    opacity: 0.04;
    pointer-events: none;
    max-width: 100%;
    overflow: hidden;
}

.trending-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 60px;
    text-align: center;
}

.trending-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
}

.trending-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    margin: 0;
}

.trending-view-all {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    padding: 14px 32px;
    border: 2px solid var(--border);
    border-radius: 50px;
    transition: all var(--speed);
    width: fit-content;
    margin: 0 auto;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.trending-view-all:hover { 
    color: var(--bg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
}

/* ===============
   HOW SECTION
   =============== */
.how-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 30%, rgba(0, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(255, 0, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 48px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    position: relative;
    transition: all var(--speed);
}

.how-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 28px;
    opacity: 0;
    transition: opacity var(--speed);
}

.how-step:hover {
    transform: translateY(-16px);
    border-color: transparent;
    box-shadow: 0 30px 80px rgba(0, 255, 255, 0.15);
}

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

.how-step-num {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--bg);
    flex-shrink: 0;
    transition: all var(--speed);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    position: relative;
    z-index: 1;
}

.how-step:hover .how-step-num {
    transform: scale(1.2) rotate(10deg);
}

.how-step-icon {
    font-size: 3rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.how-step-body {
    position: relative;
    z-index: 1;
}

.how-step-body h4 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.how-step-body p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===============
   WHY SECTION
   =============== */
.why-section {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.03) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '♠ ♥ ♦ ♣';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 300px;
    color: rgba(0, 255, 255, 0.03);
    pointer-events: none;
    letter-spacing: 40px;
    font-weight: 900;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.why-card {
    background: linear-gradient(145deg, rgba(26, 26, 37, 0.95) 0%, rgba(18, 18, 26, 0.95) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    transition: all var(--speed);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

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

.why-card:hover {
    transform: translateX(12px);
    border-color: var(--primary);
    box-shadow: -20px 0 60px rgba(0, 255, 255, 0.15);
}

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

.why-icon {
    font-size: 3rem;
    margin-bottom: 0;
    line-height: 1;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.why-card-content {
    flex: 1;
}

.why-card h4 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

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

/* ===============
   TESTIMONIALS
   =============== */
.testimonials-section {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.08) 0%, rgba(0, 255, 255, 0.05) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '🎰';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 200px;
    color: rgba(0, 255, 255, 0.03);
    pointer-events: none;
    max-width: 100%;
    overflow: hidden;
}

.testimonials-section::after {
    content: '💰';
    position: absolute;
    bottom: 10%;
    left: 10%;
    font-size: 180px;
    color: rgba(255, 0, 255, 0.03);
    pointer-events: none;
    max-width: 100%;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(26, 26, 37, 0.98) 0%, rgba(18, 18, 26, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all var(--speed);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--speed);
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    opacity: 0;
    transition: opacity var(--speed);
}

.testimonial-card:hover {
    transform: translateY(-16px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 40px 100px rgba(0, 255, 255, 0.2);
}

.testimonial-card:hover::before,
.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-quote {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    line-height: 1;
    margin-bottom: -16px;
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 6px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.testimonial-card > p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    flex: 1;
    position: relative;
    font-weight: 500;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--bg);
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transition: all var(--speed);
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============
   CTA BANNER
   =============== */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.12) 0%, rgba(255, 0, 255, 0.1) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 0;
    margin-top: 100px;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #fff;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 550px;
    line-height: 1.8;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 20px 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg);
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all var(--speed);
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.7);
}

/* ===============
   LIVE CASINO SECTION
   =============== */
.live-casino-section {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.live-casino-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.live-game-card {
    background: linear-gradient(145deg, rgba(26, 26, 37, 0.95) 0%, rgba(18, 18, 26, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all var(--speed);
    overflow: hidden;
}

.live-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.live-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff0000 100%);
    color: #000;
    padding: 8px 40px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    transform: rotate(45deg);
    box-shadow: 0 4px 20px rgba(255, 255, 0, 0.4);
}

.live-game-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.live-game-card h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text);
}

.live-game-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.live-player-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.live-game-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

/* ===============
   BONUSES SECTION
   =============== */
.bonuses-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 255, 0.03) 100%);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.bonus-card {
    background: linear-gradient(145deg, rgba(26, 26, 37, 0.98) 0%, rgba(18, 18, 26, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all var(--speed);
    overflow: hidden;
}

.bonus-ribbon {
    position: absolute;
    top: 24px;
    left: -40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg);
    padding: 10px 50px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    transform: rotate(-45deg);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
}

.bonus-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    margin-top: 20px;
}

.bonus-card h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text);
}

.bonus-amount {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 24px;
}

.bonus-features {
    list-style: none;
    margin-bottom: 28px;
    padding: 0;
}

.bonus-features li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.bonus-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg);
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--speed);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.bonus-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

.bonus-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

/* ===============
   PAYMENT SECTION
   =============== */
.payment-section {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.payment-method {
    background: linear-gradient(145deg, rgba(26, 26, 37, 0.95) 0%, rgba(18, 18, 26, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    transition: all var(--speed);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.payment-method h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.payment-method p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.payment-method:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.15);
}

.payment-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.payment-feature {
    text-align: center;
    padding: 32px;
    background: linear-gradient(145deg, rgba(26, 26, 37, 0.5) 0%, rgba(18, 18, 26, 0.5) 100%);
    border-radius: 20px;
    border: 1px solid var(--border);
}

.payment-feature span {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.payment-feature h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.payment-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===============
   FAQ SECTION
   =============== */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(26, 26, 37, 0.95) 0%, rgba(18, 18, 26, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--speed);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: all var(--speed);
}

.faq-question h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 700;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 300;
    transition: all var(--speed);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--speed);
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    padding-bottom: 24px;
}

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

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.05) 100%);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ===============
   RESPONSIVE — EXTRA SECTIONS
   =============== */
@media (max-width: 1200px) {
    .live-casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    
    .categories-scroll {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 18px;
    }
    
    .category-chip {
        padding: 32px 20px;
    }
    
    .category-chip img {
        width: 70px;
        height: 70px;
    }

    .trending-section {
        padding: 80px 0;
    }
    
    .trending-header h2 {
        font-size: clamp(1.6rem, 4vw, 2.4rem);
    }

    .how-section {
        padding: 80px 0;
    }
    
    .how-step {
        padding: 40px 24px;
    }
    
    .how-step-num {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-text p { max-width: 100%; }
}

@media (max-width: 600px) {
    .how-steps {
        grid-template-columns: 1fr;
    }
    
    .how-step {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 20px;
    }
    
    .how-step-num {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .how-step-icon {
        display: none;
    }
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        padding: 28px;
        gap: 20px;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .why-grid {
        gap: 16px;
    }
    
    .why-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 2.8rem;
        margin: 0 auto;
    }
    
    .why-card h4 {
        font-size: 1.15rem;
    }
    
    .why-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .payment-method {
        padding: 28px 20px;
    }
    
    .payment-icon {
        font-size: 2.8rem;
        margin-bottom: 14px;
    }
    
    .payment-method h4 {
        font-size: 0.95rem;
    }
    
    .payment-method p {
        font-size: 0.8rem;
    }
    
    .payment-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .payment-feature {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .categories-strip {
        padding: 0 0 80px;
    }
    
    .categories-scroll {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .category-chip {
        padding: 24px 16px;
    }
    
    .category-chip img {
        width: 60px;
        height: 60px;
    }
    
    .category-chip span {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .trending-section {
        padding: 64px 0;
    }
    
    .trending-section::before {
        font-size: 120px;
    }
    
    .trending-header {
        margin-bottom: 44px;
    }
    
    .trending-label {
        font-size: 11px;
        padding: 10px 24px;
    }
    
    .trending-header h2 {
        font-size: 1.9rem;
    }
    
    .trending-view-all {
        font-size: 12px;
        padding: 12px 28px;
    }

    .how-section { padding: 64px 0; }

    .why-section { padding: 80px 0; }
    .cta-section { padding: 80px 0; }

    .testimonials-section { padding: 80px 0; }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 40px 32px 32px;
    }
    
    .testimonial-quote {
        font-size: 2.8rem;
    }
    
    .testimonial-stars {
        font-size: 1.2rem;
        letter-spacing: 6px;
    }
    
    .testimonial-card > p {
        font-size: 1rem;
    }
    
    .testimonial-author {
        gap: 16px;
    }
    
    .testimonial-avatar {
        width: 52px;
        height: 52px;
        font-size: 16px;
    }
}
