
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #1a2d5c;
            --secondary-dark: #0f1e3f;
            --accent-gold: #f4a926;
            --accent-gold-light: #ffd700;
            --accent-red: #e63946;
            --accent-orange: #ff8c42;
            --text-light: #ffffff;
            --text-muted: #c0c0c0;
            --bg-card: #2a3f5f;
            --hover-gold: #e89b1d;
            --shadow-sm: 0 4px 15px rgba(244, 169, 38, 0.1);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 15px 50px rgba(244, 169, 38, 0.2);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            background: rgba(15, 30, 63, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid var(--accent-gold);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        .logo-img {
            width: 100px;
            width: 100px;
            object-fit: contain;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            font-weight: bold;
            letter-spacing: 2px;
            color: var(--accent-gold);
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: fit-content;
        }
        .hero-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 15px;
            border: 2px solid var(--accent-gold);
            box-shadow: var(--shadow-lg);
            animation: floatImage 3s ease-in-out infinite;
            transition: transform 0.3s ease;
        }

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

        .logo:hover {
            transform: scale(1.05);
            color: var(--accent-gold-light);
        }

        .logo-placeholder {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary-dark);
            font-size: 1.3rem;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
            position: relative;
        }

        nav a:hover {
            color: var(--accent-gold);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .btn-group {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        .btn-login {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--accent-gold);
        }

        .btn-login:hover {
            background: var(--accent-gold);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-register {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
            color: var(--primary-dark);
            box-shadow: var(--shadow-md);
        }

        .btn-register:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 0.5rem;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--accent-gold);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 70px;
            right: 0;
            width: 100%;
            background: rgba(15, 30, 63, 0.98);
            backdrop-filter: blur(10px);
            padding: 2rem;
            flex-direction: column;
            gap: 1rem;
            z-index: 999;
            animation: slideDown 0.3s ease-out;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            color: var(--text-light);
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(244, 169, 38, 0.2);
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
            padding-left: 1.5rem;
        }

        .mobile-menu .btn-group {
            flex-direction: column;
            width: 100%;
            margin-top: 1rem;
        }

        .mobile-menu .btn {
            width: 100%;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Section */
        .hero {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .stat-card {
            background: rgba(42, 63, 95, 0.5);
            border: 1px solid var(--accent-gold);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: rgba(42, 63, 95, 0.8);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
            color: var(--primary-dark);
            padding: 1rem 2.5rem;
            border-radius: 8px;
            border: none;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 40px rgba(244, 169, 38, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent-gold);
            padding: 1rem 2.5rem;
            border: 2px solid var(--accent-gold);
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--accent-gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .hero-image {
            text-align: center;
            perspective: 1000px;
        }

        .hero-image-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, rgba(244, 169, 38, 0.2), rgba(230, 57, 70, 0.2));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--text-muted);
            border: 2px dashed var(--accent-gold);
            animation: floatImage 3s ease-in-out infinite;
        }

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

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

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

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Features Section */
        .features {
            max-width: 1400px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .section-title {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 в ряд */
            gap: 2rem;
        }
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr); /* планшети */
            }
        }

        @media (max-width: 600px) {
            .features-grid {
                grid-template-columns: 1fr; /* телефони */
            }
        }
                .feature-card {
            background: linear-gradient(135deg, rgba(42, 63, 95, 0.6), rgba(42, 63, 95, 0.3));
            border: 1px solid rgba(244, 169, 38, 0.3);
            padding: 2rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            animation: slideInLeft 0.6s ease-out;
        }

        .feature-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .feature-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .feature-card:nth-child(4) {
            animation-delay: 0.3s;
        }

        .feature-card:nth-child(5) {
            animation-delay: 0.4s;
        }

        .feature-card:nth-child(6) {
            animation-delay: 0.5s;
        }

        .feature-card:hover {
            background: linear-gradient(135deg, rgba(42, 63, 95, 0.9), rgba(42, 63, 95, 0.6));
            border-color: var(--accent-gold);
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.15) rotate(10deg);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent-gold);
        }

        .feature-card p {
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* Bonus Section */
        .bonus-section {
            max-width: 1400px;
            margin: 5rem auto;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(244, 169, 38, 0.1));
            border-radius: 15px;
            border: 2px solid var(--accent-gold);
        }

        .bonus-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .bonus-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
        }

        .bonus-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .bonus-list li {
            padding: 1rem 0;
            padding-left: 3rem;
            position: relative;
            color: var(--text-light);
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(244, 169, 38, 0.2);
        }

        .bonus-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: bold;
            font-size: 1.5rem;
        }

        .bonus-box {
            background: rgba(244, 169, 38, 0.15);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent-gold);
            text-align: center;
        }
.bonus-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.game-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(42, 63, 95, 0.7), rgba(42, 63, 95, 0.4));
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(244, 169, 38, 0.2);
}

.game-image {
    width: 100%;
    aspect-ratio: 3 / 2; /* або 3 / 2 для більшої висоти */
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--bg-card); /* щоб заповнити порожні місця */
}
        .bonus-percentage {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .bonus-description {
            font-size: 1rem;
            color: var(--text-muted);
        }

        /* About Section */
        .about-section {
            max-width: 1400px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .about-content {
            background: rgba(42, 63, 95, 0.4);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid rgba(244, 169, 38, 0.3);
        }

        .about-content h2 {
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }

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

        /* Games Section */
        .games-section {
            max-width: 1400px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .game-card {
            background: linear-gradient(135deg, rgba(42, 63, 95, 0.7), rgba(42, 63, 95, 0.4));
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(244, 169, 38, 0.2);
        }

        .game-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-gold);
        }


        .game-info {
            padding: 1.5rem;
        }

        .game-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .game-provider {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .game-rating {
            display: flex;
            gap: 0.3rem;
            margin-top: 1rem;
        }

        .star {
            color: var(--accent-gold);
            font-size: 0.9rem;
        }

        /* Why Choose Us */
        .why-us {
            max-width: 1400px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .why-card {
            background: linear-gradient(135deg, rgba(42, 63, 95, 0.5), rgba(42, 63, 95, 0.2));
            padding: 2rem;
            border-radius: 12px;
            border-top: 3px solid var(--accent-gold);
            transition: all 0.3s ease;
            animation: slideInRight 0.6s ease-out;
        }

        .why-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .why-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .why-card:nth-child(4) {
            animation-delay: 0.3s;
        }

        .why-card:nth-child(5) {
            animation-delay: 0.4s;
        }

        .why-card:nth-child(6) {
            animation-delay: 0.5s;
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, rgba(42, 63, 95, 0.8), rgba(42, 63, 95, 0.5));
        }

        .why-card h3 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

    .how-it-works {
        max-width: 1400px;
        margin: 5rem auto;
        padding: 0 2rem;
    }

    .section-subtitle {
        text-align: center;
        color: var(--text-muted);
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .step-card {
        background: linear-gradient(135deg, rgba(42, 63, 95, 0.5), rgba(42, 63, 95, 0.2));
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        position: relative;
        border: 1px solid rgba(244, 169, 38, 0.2);
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .step-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-lg);
        background: linear-gradient(135deg, rgba(42, 63, 95, 0.8), rgba(42, 63, 95, 0.4));
    }

    .step-number {
        position: absolute;
        top: -15px;
        left: -15px;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.3rem;
        color: var(--primary-dark);
        box-shadow: var(--shadow-sm);
    }

    .step-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .step-card h3 {
        font-size: 1.5rem;
        color: var(--accent-gold);
        margin-bottom: 1rem;
    }

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

    .steps-cta {
        text-align: center;
        margin-top: 2rem;
    }

    .steps-note {
        color: var(--text-muted);
        font-size: 0.8rem;
        margin-top: 1rem;
        opacity: 0.7;
    }

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

    @media (max-width: 640px) {
        .steps-container {
            grid-template-columns: 1fr;
        }
        
        .step-card {
            padding: 1.5rem;
        }
        
        .step-number {
            width: 35px;
            height: 35px;
            font-size: 1rem;
            top: -10px;
            left: -10px;
        }
    }

    .testimonials {
        max-width: 1400px;
        margin: 5rem auto;
        padding: 0 2rem;
    }

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

    .testimonial-card {
        background: linear-gradient(135deg, rgba(42, 63, 95, 0.5), rgba(42, 63, 95, 0.2));
        border-radius: 16px;
        padding: 1.5rem;
        border: 1px solid rgba(244, 169, 38, 0.2);
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-md);
        background: linear-gradient(135deg, rgba(42, 63, 95, 0.7), rgba(42, 63, 95, 0.4));
    }

    .testimonial-stars {
        color: var(--accent-gold);
        font-size: 1rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .testimonial-text {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        border-top: 1px solid rgba(244, 169, 38, 0.2);
        padding-top: 1rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--primary-dark);
    }

    .author-info {
        flex: 1;
    }

    .author-name {
        font-weight: 600;
        color: var(--accent-gold);
        font-size: 0.9rem;
    }

    .author-location {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    .trust-badge {
        text-align: center;
        padding: 1rem;
        background: rgba(244, 169, 38, 0.1);
        border-radius: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: auto;
        margin: 0 auto;
        color: var(--accent-gold);
        font-weight: 500;
        border: 1px solid rgba(244, 169, 38, 0.3);
    }

    .trust-icon {
        font-size: 1.2rem;
    }

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

    @media (max-width: 640px) {
        .testimonials-grid {
            grid-template-columns: 1fr;
        }
        
        .testimonial-card {
            padding: 1.2rem;
        }
        
        .trust-badge {
            flex-direction: column;
            gap: 0.5rem;
            border-radius: 20px;
            padding: 1rem;
        }
    }
        .why-card p {
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* FAQ Section */
        .faq-section {
            max-width: 1400px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

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

        .faq-item {
            background: rgba(42, 63, 95, 0.4);
            margin-bottom: 1.5rem;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(244, 169, 38, 0.2);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent-gold);
            background: rgba(42, 63, 95, 0.6);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--accent-gold);
            transition: all 0.3s ease;
        }

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

        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: var(--text-muted);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem 1.5rem;
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: var(--secondary-dark);
            border-top: 2px solid var(--accent-gold);
            padding: 3rem 2rem 1rem;
            margin-top: 5rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h4 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-column ul li a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(244, 169, 38, 0.2);
            padding-top: 2rem;
            text-align: center;
            color: var(--text-muted);
        }

        .responsible-gaming {
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(230, 57, 70, 0.1);
            border-left: 3px solid var(--accent-red);
            border-radius: 6px;
        }

        .responsible-gaming h4 {
            color: var(--accent-red);
            margin-bottom: 0.5rem;
        }

        .responsible-gaming p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }

            .header-content {
                gap: 1rem;
            }

            .hamburger {
                display: flex;
            }

            nav {
                display: none;
            }

            .btn-group {
                display: none;
            }

            .hero {
                grid-template-columns: 1fr;
                margin: 1.5rem auto;
                gap: 2rem;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
            }

            .bonus-content {
                grid-template-columns: 1fr;
            }

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

            .section-title {
                font-size: 2rem;
            }

            .games-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }

            .logo {
                font-size: 1.3rem;
            }

            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }

            .about-content {
                padding: 2rem;
            }

            .feature-card,
            .why-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-image-placeholder {
                height: 250px;
            }

            .btn-group {
                width: 100%;
                flex-direction: column;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }

            .feature-card,
            .why-card {
                padding: 1.5rem;
            }

            .logo {
                font-size: 1rem;
            }

            .stat-card {
                padding: 1rem;
            }

            .bonus-box {
                padding: 1.5rem;
            }
        }