/* ── Hero - KEPT STYLE WITH NEW COLORS ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #020617 0%, #1e293b 40%, #334155 75%, #475569 100%);
    overflow: hidden;
    padding: 0 5%;
}

/* Fade into page */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top, var(--bg-main), transparent);
    pointer-events: none;
    z-index: 3;
}

/* Decorative floating shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.hero-shape--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--primary-light), transparent 70%);
    top: -200px; right: -150px;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-shape--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--accent-light), transparent 70%);
    bottom: 0; left: -100px;
    animation: heroFloat 10s ease-in-out infinite reverse;
}

.hero-shape--3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    top: 40%; left: 55%;
    opacity: 0.08;
    animation: heroFloat 6s ease-in-out infinite 2s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Inner layout — split */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 10rem 0 8rem;
}

/* Left: text */
.hero-content { text-align: left; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(8px);
}

.hero-badge__dot {
    width: 7px; height: 7px;
    background: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-light);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.hero h1 span {
    color: var(--accent-light);
    font-style: italic;
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-light);
    opacity: 0.4;
    border-radius: 2px;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-actions .btn-primary {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    padding: 1rem 2.4rem;
    font-size: 0.95rem;
    border-radius: 50px;
    background: var(--accent);
    color: #0f172a;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
}

.hero-actions .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(245, 158, 11, 0.55);
}

.btn-ghost {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    padding: 1rem 2.4rem;
    font-size: 0.95rem;
    border-radius: 50px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hero-stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

/* Right: visual card stack */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-stack {
    position: relative;
    width: 320px;
    height: 380px;
}

.hero-card {
    position: absolute;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-card--back {
    width: 260px; height: 320px;
    background: rgba(255,255,255,0.04);
    bottom: 0; right: 0;
    transform: rotate(8deg);
    backdrop-filter: blur(4px);
}

.hero-card--mid {
    width: 270px; height: 330px;
    background: rgba(255,255,255,0.07);
    bottom: 10px; right: 10px;
    transform: rotate(4deg);
    backdrop-filter: blur(6px);
}

.hero-card--front {
    width: 280px; height: 340px;
    background-color: rgba(255,255,255,0.12);
    background-size: cover;
    background-position: center;
    bottom: 20px; right: 20px;
    transform: rotate(0deg);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    animation: cardFloat 5s ease-in-out infinite;
    overflow: hidden;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    border-radius: inherit;
    pointer-events: none;
}

.hero-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.hero-card__badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-card__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.12);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    align-self: flex-start;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll__line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── NEW STYLES START HERE ── */

/* ── Feature Grid ── */
.game-features {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
}

.game-card {
    background: linear-gradient(145deg, var(--bg-card), #0f172a);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.game-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.game-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.game-info {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
}

.game-info p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    line-height: 1.7;
}

.btn-outline {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    color: var(--primary-light);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: var(--transition);
    align-self: flex-start;
    width: 100%;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

/* ── Latest News ── */
.latest-news {
    padding: 8rem 0;
    background: var(--bg-main);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

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

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

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

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

.news-content {
    padding: 2.2rem;
}

.news-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--accent-light);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.news-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.35;
    font-weight: 800;
}

.news-content h3 a { color: var(--text-main); }
.news-card:hover h3 a { color: var(--accent-light); }

.news-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Ticker Bar ── */
.ticker-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 52px;
    position: relative;
    z-index: 5;
}

.ticker-label {
    flex-shrink: 0;
    background: var(--accent);
    color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 1.8rem;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ticker-inner {
    display: flex;
    gap: 0;
    animation: tickerScroll 160s linear infinite;
    width: max-content;
}

.ticker-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    white-space: nowrap;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.2s;
    font-weight: 600;
}

.ticker-item:hover { color: var(--accent-light); }

.ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-light);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Featured Spotlight ── */
.featured-spotlight {
    padding: 7rem 0;
    background: var(--bg-card);
}

.spotlight-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: linear-gradient(145deg, #0f172a, var(--bg-card));
    border: 2px solid var(--border);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.spotlight-text {
    padding: 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    width: fit-content;
}

.spotlight-text h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.spotlight-text .btn-primary {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--transition);
    width: fit-content;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.spotlight-text .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 36px rgba(99, 102, 241, 0.6);
}

.spotlight-image {
    height: 100%;
    min-height: 450px;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.spotlight-inner:hover .spotlight-image img { transform: scale(1.08); }

/* ── Why Us ── */
.why-us {
    padding: 8rem 0;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1), transparent 50%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.why-card {
    background: linear-gradient(145deg, var(--bg-card), #0f172a);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

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

/* ── Popular Articles ── */
.popular-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.popular-inner {}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.popular-header .section-title {
    margin-bottom: 0;
    text-align: left;
    left: auto;
    transform: none;
}

.popular-header .section-title::before {
    left: 0;
    transform: none;
}

.popular-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.popular-item:hover {
    border-color: var(--accent);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.popular-item img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.popular-item:hover img { transform: scale(1.08); }

.popular-item__body { flex: 1; }

.popular-item__date {
    font-size: 0.78rem;
    color: var(--accent-light);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.6rem;
}

.popular-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.popular-item:hover h4 { color: var(--accent-light); }

/* ── CTA Banner ── */
.cta-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 350px; height: 350px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.8rem;
}

.cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 550px;
    line-height: 1.8;
}

.cta-btn {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: #fff;
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.05rem;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    background: var(--accent-light);
    color: var(--bg-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 9rem 0 7rem;
        gap: 3rem;
    }

    .hero-content { text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual {
        max-width: 380px;
        margin: 0 auto;
    }

    .spotlight-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .spotlight-image { min-height: 300px; }
    .spotlight-text { padding: 3rem; text-align: center; }
    .spotlight-text .btn-primary { width: 100%; }
    .spotlight-tag { margin-left: auto; margin-right: auto; }
    .popular-header { flex-direction: column; align-items: flex-start; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-inner { padding: 8rem 0 6rem; }
    .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); letter-spacing: -0.5px; }
    .hero p { font-size: 1rem; }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn-primary,
    .btn-ghost {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .hero-stats { gap: 1rem; }
    .hero-stat strong { font-size: 1.3rem; }

    .hero-visual {
        max-width: 320px;
    }

    .game-features, .latest-news, .popular-section, .why-us, .cta-banner { padding: 5rem 0; }

    .news-grid, .grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-card img, .news-card img { height: 220px; }
    .game-info, .news-content { padding: 2rem; }
    .btn-outline { width: 100%; text-align: center; justify-content: center; }
    .why-grid { grid-template-columns: 1fr; }
    .popular-item { flex-direction: column; text-align: center; }
    .popular-item img { width: 100%; height: 180px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-text p { margin: 0 auto; }
    .cta-btn { width: 100%; text-align: center; }
}

@media (max-width: 540px) {
    .hero-visual {
        max-width: 280px;
    }
    .hero-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .hero-card__icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .hero-card__title {
        font-size: 0.95rem;
    }
    .hero-card__value {
        font-size: 1.25rem;
    }
}

/* ── Testimonials Section ── */
.testimonials {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--bg-card), #0f172a);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ── Image Gallery Section ── */
.gallery-section {
    padding: 8rem 0;
    background: var(--bg-main);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.04);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

.gallery-item:hover img {
    transform: scale(1.12);
}

/* ── Stats Highlight Section ── */
.stats-highlight {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
}

.stats-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.15), transparent 40%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials, .gallery-section, .stats-highlight {
        padding: 5rem 0;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stat-number {
        font-size: 3rem;
    }
}

/* ── Bonuses Section ── */
.bonuses-section {
    padding: 8rem 0;
    background: var(--bg-card);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.bonus-card {
    background: linear-gradient(145deg, var(--bg-main), var(--bg-card));
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 2px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.bonus-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-light);
    margin-bottom: 1rem;
    line-height: 1;
}

.bonus-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.bonus-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--transition);
}

.bonus-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

/* ── Payment Methods Section ── */
.payments-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.payment-item {
    background: linear-gradient(145deg, var(--bg-card), #0f172a);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    font-size: 2.5rem;
}

.payment-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

/* ── FAQ Section ── */
.faq-section {
    padding: 8rem 0;
    background: var(--bg-main);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, var(--bg-card), #0f172a);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border);
    overflow: hidden;
}

.faq-question {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 2rem 1.8rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* ── Responsible Gambling Section ── */
.responsible-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, var(--bg-dark) 100%);
}

.responsible-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.responsible-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.responsible-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
}

.responsible-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.responsible-badge {
    background: rgba(99, 102, 241, 0.15);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.responsible-badge:hover {
    background: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

/* Additional Responsive Styles */
@media (max-width: 1024px) {
    .payments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .responsible-inner {
        flex-direction: column;
        text-align: center;
    }
    .responsible-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .bonuses-section, .faq-section, .payments-section, .responsible-section {
        padding: 5rem 0;
    }
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    .payments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bonus-amount {
        font-size: 2.8rem;
    }
    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 540px) {
    .why-grid { grid-template-columns: 1fr; }
    .payments-grid {
        grid-template-columns: 1fr;
    }
}
