/* Custom Properties & Tokens */
:root {
    /* Color Palette - Premium Dark Theme */
    --clr-bg: #09090b;
    --clr-surface: #18181b;
    --clr-surface-light: rgba(39, 39, 42, 0.6);
    --clr-primary: #8b5cf6;
    /* Vibrant Purple */
    --clr-primary-glow: rgba(139, 92, 246, 0.4);
    --clr-accent: #f59e0b;
    /* Gold/Amber */

    /* Typography */
    --clr-text-main: #f8fafc;
    --clr-text-muted: #a1a1aa;

    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;

    /* Shadows & Effects */
    --glass-bg: rgba(24, 24, 27, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-lg: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Background Effects */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--clr-primary-glow), transparent 70%);
}

.orb-2 {
    top: 40%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    opacity: 0.2;
}

/* Utilities */
span.highlight {
    color: var(--clr-accent);
}

h1 span,
h2 span {
    background: linear-gradient(135deg, var(--clr-primary), #d8b4fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1.05);
    transition: opacity 0.2s ease;
}

.logo:hover img {
    opacity: 0.85;
}

/* Fallback text logo (kept for safety) */
.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.nav-links a:hover {
    color: var(--clr-text-main);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-text-main);
    transition: var(--transition-smooth);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-primary {
    background: var(--clr-primary);
    color: white;
    box-shadow: 0 4px 15px var(--clr-primary-glow);
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    background: var(--clr-surface);
    color: var(--clr-text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--clr-surface-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text-main);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-height);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--clr-primary-glow);
    border-radius: 20px;
    color: #c4b5fd;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-text-main);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* Hero Visual & Glass Cards */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards-container {
    position: relative;
    width: 300px;
    height: 400px;
}

.glass-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.card-front {
    top: 10%;
    left: -20px;
    width: 100%;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.card-back {
    bottom: 5%;
    right: -40px;
    width: 90%;
    z-index: 1;
    opacity: 0.8;
    background: linear-gradient(145deg, var(--clr-surface), #27272a);
    animation: float 8s ease-in-out infinite reverse;
}

.winner-amount {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: var(--clr-accent);
    margin: 1rem 0;
}

.winner-name {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.slot-visual {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Games Section */
.games {
    padding: 8rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--clr-surface);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-primary-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-image {
    height: 200px;
    position: relative;
}

.bg-gradient-1 {
    background: linear-gradient(45deg, #1e1b4b, #4338ca);
}

.bg-gradient-2 {
    background: linear-gradient(45deg, #4a044e, #9333ea);
}

.bg-gradient-3 {
    background: linear-gradient(45deg, #064e3b, #059669);
}

.badge.hot {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: white;
    border: none;
    margin: 0;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.game-info p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.play-btn {
    color: var(--clr-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.game-card:hover .play-btn {
    color: #a78bfa;
}

/* VIP Section */
.vip-section {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto 6rem;
}

.vip-container {
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8), rgba(39, 39, 42, 0.4));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vip-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vip-content p {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

.benefit-list {
    margin-bottom: 2.5rem;
}

.benefit-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-list li::before {
    content: '✓';
    color: var(--clr-accent);
    font-weight: bold;
}

.vip-visual {
    display: flex;
    justify-content: center;
}

.vip-badge {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27272a, #09090b);
    border: 2px solid var(--clr-accent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.2);
    animation: pulse 4s infinite;
}

.crown {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.vip-badge h4 {
    color: var(--clr-accent);
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
    }

    50% {
        box-shadow: 0 0 60px rgba(245, 158, 11, 0.4);
    }

    100% {
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
    }
}

/* Footer */
footer {
    background: #000;
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin-top: 1rem;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: var(--clr-text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--clr-accent);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

.age-warning {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--clr-text-muted);
    border-radius: 4px;
}

/* Interactivity Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE DESIGN — MOBILE FIRST
   Breakpoints: 968px | 768px | 480px
   ============================================= */

/* --- Tablet (≤968px) --- */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(var(--nav-height) + 2rem);
        gap: 2rem;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
        font-size: 1rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .stats {
        justify-content: center;
        gap: 2rem;
    }

    .cards-container {
        width: 280px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vip-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-list li {
        justify-content: center;
    }

    .vip-visual {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {

    /* --- Navbar & Mobile Menu --- */
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile Nav Drawer */
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        padding: 1.5rem 2rem 2rem;
        gap: 0;
        z-index: 999;
        animation: slideDown 0.25s ease;
    }

    .nav-links.mobile-open li {
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.mobile-open li:last-child {
        border-bottom: none;
    }

    .nav-links.mobile-open a {
        display: block;
        padding: 1rem 0;
        font-size: 1.05rem;
        color: var(--clr-text-muted);
    }

    .nav-links.mobile-open a:hover,
    .nav-links.mobile-open a.active {
        color: var(--clr-text-main);
    }

    /* CTA Buttons appended at bottom of nav drawer */
    .nav-actions.mobile-open {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 2rem 2rem;
        position: fixed;
        top: calc(var(--nav-height) + 5 * 3.25rem);
        /* approx height of 5 nav links */
        left: 0;
        right: 0;
        background: rgba(9, 9, 11, 0.98);
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
        z-index: 998;
        animation: slideDown 0.25s ease;
    }

    .nav-actions.mobile-open .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: block;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hamburger animation when open */
    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* --- Logo --- */
    .logo img {
        height: 34px;
    }

    /* --- Hero --- */
    .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn-large {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
        justify-content: center;
    }

    .stat-item {
        min-width: 90px;
        text-align: center;
    }

    /* --- Section Headings --- */
    .section-header h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }

    /* --- Games Grid --- */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .game-image {
        height: 180px;
    }

    .category-grid {
        gap: 0.5rem;
    }

    .category-pill {
        font-size: 0.82rem;
        padding: 0.45rem 1rem;
    }

    /* --- About --- */
    .about-section {
        padding: 4rem 1.25rem;
    }

    /* --- Promotions --- */
    .promotions-section {
        padding: 4rem 1.25rem;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    /* --- Why Us --- */
    .why-section {
        padding: 4rem 1.25rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    /* --- VIP --- */
    .vip-section {
        padding: 4rem 1.25rem;
    }

    .vip-container {
        padding: 3rem 1.5rem;
    }

    /* --- FAQ --- */
    .faq-section {
        padding: 4rem 1.25rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.1rem 1.25rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
    }

    /* --- Footer --- */
    .footer-content {
        padding: 0 1.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 0 1.25rem;
    }
}

/* --- Small Mobile (≤480px) --- */
@media (max-width: 480px) {
    .hero {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .badge {
        font-size: 0.78rem;
        padding: 0.35rem 0.85rem;
    }

    .section-header {
        padding: 0 1.25rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .games {
        padding: 4rem 1.25rem 3rem;
    }

    .cards-container {
        display: none;
    }

    .promo-value {
        font-size: 1.7rem;
    }

    .footer-badges {
        justify-content: center;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-text p {
    color: var(--clr-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--clr-text-main);
    font-weight: 600;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--clr-surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: var(--transition-smooth);
}

.trust-item:hover {
    border-color: var(--clr-primary-glow);
    transform: translateX(5px);
}

.trust-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

/* ===== GAME CATEGORIES ===== */
.games-categories {
    margin-top: 3rem;
    text-align: center;
}

.games-categories h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.category-pill {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: var(--clr-surface);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.category-pill:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--clr-primary-glow);
}

/* ===== GAME RTP LABEL ===== */
.game-rtp {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--clr-primary-glow);
    border-radius: 6px;
    padding: 0.2rem 0.6rem;
    font-size: 0.78rem;
    color: #c4b5fd;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== PROMOTIONS SECTION ===== */
.promotions-section {
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.promo-card {
    background: var(--clr-surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.promo-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.promo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.promo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.promo-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.promo-card>p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--clr-surface);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-color: var(--clr-primary-glow);
    transform: translateY(-6px);
}

.why-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--clr-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.why-card p strong {
    color: var(--clr-text-main);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--clr-surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.open {
    border-color: var(--clr-primary-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--clr-text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: #c4b5fd;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--clr-primary);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--clr-text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer p strong {
    color: var(--clr-text-main);
}

/* ===== FOOTER BADGES ===== */
.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.footer-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--clr-surface);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

/* ===== RESPONSIVE – NEW SECTIONS ===== */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }
}

/* ===== REAL IMAGE SUPPORT IN CARDS ===== */
.game-image img,
.slot-img img,
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image img,
.slot-card:hover .slot-img img,
.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.game-image,
.slot-img,
.blog-img {
    overflow: hidden;
}