:root {
            --primary-dark: #3a0ca3;
            --primary-light: #4361ee;
            --secondary: #f8f9fa;
            --accent: #ff006e;
            --text-dark: #212529;
            --text-light: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--secondary);
            overflow-x: hidden;
        }
        
        .container-fluid {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-dark);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--primary-light);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: white;
        }
        
        .auth-buttons .btn {
            margin-left: 10px;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 500;
        }
        
        .btn-signup {
            background-color: var(--primary-light);
            border: none;
            color: white;
        }
        
        .btn-signup:hover {
            background-color: #3a56d4;
            color: white;
        }
        
        .btn-login {
            background-color: transparent;
            border: 1px solid white;
            color: white;
        }
        
        .btn-login:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        
        .disclaimer {
            background-color: rgba(255,255,255,0.1);
            padding: 8px 0;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.9);
            text-align: center;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
            padding: 80px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://picsum.photos/seed/casino/1920/800.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .btn-play {
            background-color: var(--accent);
            color: white;
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255,0,110,0.3);
        }
        
        .btn-play:hover {
            background-color: #e6005a;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255,0,110,0.4);
        }
        
        .age-badge {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            font-weight: 700;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        
        /* How It Works Section */
        .how-it-works {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .step-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-light);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
        .step-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .step-card p {
            color: var(--text-light);
        }
        
        /* Popular Games Section */
        .popular-games {
            padding: 80px 0;
            background-color: white;
        }
        
        .game-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            background-color: white;
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .game-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .game-category {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--primary-dark);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .game-info {
            padding: 20px;
        }
        
        .game-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-dark);
        }
        
        .game-provider {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .btn-play-game {
            background-color: var(--primary-light);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .btn-play-game:hover {
            background-color: #3a56d4;
            color: white;
        }
        
        /* Why Play With Us Section */
        .why-play {
            padding: 80px 0;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-light);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .feature-card p {
            color: var(--text-light);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-signup-cta {
            background-color: white;
            color: var(--primary-dark);
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-signup-cta:hover {
            background-color: var(--secondary);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo i {
            margin-right: 10px;
            color: var(--primary-light);
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .footer-disclaimer {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }
        
        .age-badge-footer {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            font-weight: 700;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .how-it-works, .popular-games, .why-play {
                padding: 60px 0;
            }
            
            .cta-section {
                padding: 60px 0;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .auth-buttons .btn {
                margin-left: 0;
                margin-top: 10px;
            }
            
            .navbar-nav {
                margin-top: 20px;
            }
        }

