        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .navbar {
            background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #B22222 100%);
            box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .nav-logo i {
            margin-right: 15px;
            font-size: 2.2rem;
            color: #FFD700;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #FFD700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #FFD700, #FFA500);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 30px;
            height: 4px;
            background: white;
            margin: 4px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 100, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            animation: backgroundShift 10s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #FFD700, #FFA500, #DC143C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            0% { filter: brightness(1); }
            100% { filter: brightness(1.2); }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #FFD700;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero-description {
            font-size: 1.2rem;
            color: #cccccc;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(45deg, #DC143C, #B22222);
            color: white;
            box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(220, 20, 60, 0.6);
        }

        .btn-secondary {
            background: linear-gradient(45deg, #006400, #228B22);
            color: white;
            box-shadow: 0 8px 25px rgba(0, 100, 0, 0.4);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 100, 0, 0.6);
        }

        /* Casino Cards Section */
        .casino-cards {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .casino-card {
            background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .casino-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #DC143C, #006400, #FFD700);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .casino-card:hover::before {
            opacity: 0.1;
        }

        .casino-card:hover {
            transform: translateY(-10px);
            border-color: #FFD700;
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
        }

        .card-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            color: #FFD700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        .casino-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .casino-card p {
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .card-symbols {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }

        .symbol {
            font-size: 2rem;
            color: #DC143C;
            text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
        }

        .symbol.green {
            color: #006400;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .feature-item {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid #444;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            border-color: #FFD700;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #DC143C, #B22222);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        .feature-item h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: white;
        }

        .feature-item p {
            color: #cccccc;
            line-height: 1.6;
        }

        /* Demo Section */
        .demo-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            text-align: center;
        }

        .demo-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .demo-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #FFD700;
        }

        .demo-description {
            font-size: 1.2rem;
            color: #cccccc;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .demo-warning {
            background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border: 2px solid #FFD700;
        }

        .demo-warning h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #FFD700;
        }

        .demo-warning p {
            color: white;
            font-size: 1.1rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid #444;
        }

        .faq-question {
            padding: 25px 30px;
            background: linear-gradient(45deg, #DC143C, #B22222);
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: linear-gradient(45deg, #B22222, #8B0000);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #2a2a2a;
        }

        .faq-answer.active {
            padding: 25px 30px;
            max-height: 200px;
        }

        .faq-answer p {
            color: #cccccc;
            line-height: 1.6;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: white;
            padding: 80px 0 30px;
            border-top: 2px solid #FFD700;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 25px;
        }

        .footer-logo i {
            margin-right: 15px;
            color: #FFD700;
            font-size: 2rem;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: #FFD700;
        }

        .footer-section p {
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #FFD700;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #DC143C, #B22222);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(220, 20, 60, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 30px;
            text-align: center;
            color: #cccccc;
        }

        .footer-bottom a {
            color: #FFD700;
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 30px 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cards-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .btn {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .casino-card {
                padding: 30px 20px;
            }
            
            .feature-item {
                padding: 30px 15px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .nav-logo {
                font-size: 1.4rem;
            }
            
            .nav-logo i {
                font-size: 1.8rem;
            }
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .card-icon {
            animation: float 3s ease-in-out infinite;
        }

        .card-icon:nth-child(2) {
            animation-delay: 0.5s;
        }

        .card-icon:nth-child(3) {
            animation-delay: 1s;
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

                .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
        }

        .footer-links a:hover {
            color: #ffd700;
        }

                /* Age Verification Overlay Styles */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .modal {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            max-width: 400px;
            width: 90%;
        }

        .modal h1 {
            margin-bottom: 20px;
            color: black;
        }

        .modal p {
            margin-bottom: 30px;
            color: black;
        }

        .button-group {
            display: flex;
            justify-content: space-around;
        }

        .btn-over, .btn-under {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }

        .btn-over {
            background-color: #28a745;
            color: white;
        }

        .btn-under {
            background-color: #dc3545;
            color: white;
        }

        .disclaimer {
            margin-top: 20px;
            font-size: 12px;
            color: #666;
        }
