:root {
            --deep-blue: #1a237e;
            --silver: #c0c0c0;
            --white: #ffffff;
            --gradient-blue: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
            --gold: #ffd700;
            --shadow-blue: rgba(26, 35, 126, 0.3);
        }

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

        body {
            font-family: 'Open Sans', sans-serif;
            background: var(--deep-blue);
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            color: var(--white);
            overflow-x: hidden;
            position: relative;
        }
        
        #games2 {
            display: none;
        }
        /* Floating Animation Elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .floating-coin {
            position: absolute;
            color: var(--gold);
            font-size: 24px;
            opacity: 0.6;
            animation: float 8s infinite ease-in-out;
        }

        .floating-star {
            position: absolute;
            color: var(--silver);
            font-size: 16px;
            opacity: 0.4;
            animation: sparkle 3s infinite ease-in-out;
        }

        .floating-diamond {
            position: absolute;
            color: var(--white);
            font-size: 20px;
            opacity: 0.5;
            animation: rotate-float 6s infinite linear;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
            25% { transform: translateY(-20px) rotate(90deg); opacity: 0.8; }
            50% { transform: translateY(-40px) rotate(180deg); opacity: 1; }
            75% { transform: translateY(-20px) rotate(270deg); opacity: 0.8; }
        }

        @keyframes sparkle {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.4; }
            50% { transform: scale(1.5) rotate(180deg); opacity: 1; }
        }

        @keyframes rotate-float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-60px) rotate(360deg); }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(26, 35, 126, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 2px solid var(--silver);
        }

        .header.scrolled {
            background: rgba(26, 35, 126, 0.98);
            box-shadow: 0 4px 20px var(--shadow-blue);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
            background: linear-gradient(45deg, var(--gold), var(--silver));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: logo-glow 2s infinite alternate ease-in-out;
        }

        @keyframes logo-glow {
            0% { filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); }
            100% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-menu a:hover {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after {
            width: 80%;
        }

        .age-badge {
            background: linear-gradient(45deg, #ff4444, #cc3333);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: pulse-badge 2s infinite ease-in-out;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Menu */
        .mobile-nav {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(26, 35, 126, 0.98);
            backdrop-filter: blur(10px);
            transition: left 0.3s ease;
            padding: 2rem;
            z-index: 999;
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 0;
        }

        .mobile-nav ul li {
            margin: 1.5rem 0;
        }

        .mobile-nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            padding: 1rem;
            display: block;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .mobile-nav ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--gold);
            transform: translateX(10px);
        }

        /* Main Content */
        .main-content {
            position: relative;
            z-index: 2;
            margin-top: 80px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            background: var(--gradient-blue);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 255, 0.03) 2px,
                    rgba(255, 255, 255, 0.03) 4px
                );
            animation: grid-move 20s linear infinite;
            z-index: 1;
        }

        @keyframes grid-move {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--white), var(--gold), var(--silver));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: hero-title 3s ease-in-out infinite alternate;
        }

        @keyframes hero-title {
            0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
            100% { transform: scale(1.02); filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)); }
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fade-in-up 1s ease-out 0.5s both;
        }

        @keyframes fade-in-up {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 0.9; transform: translateY(0); }
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, var(--gold), #ffed4a);
            color: var(--deep-blue);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
            animation: cta-glow 2s ease-in-out infinite alternate;
        }

        @keyframes cta-glow {
            0% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
            100% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5); }
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
        }

        /* About Section */
        .about-section {
            padding: 4rem 2rem;
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
            animation: section-title 2s ease-in-out infinite alternate;
        }

        @keyframes section-title {
            0% { transform: scale(1); }
            100% { transform: scale(1.02); }
        }

        .about-section p {
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        /* Games Section */
        .games-section {
            padding: 4rem 2rem;
            background: var(--gradient-blue);
        }

        .games-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--gold);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .game-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s ease;
            opacity: 0;
        }

        .game-card:hover::before {
            opacity: 1;
            animation: card-shimmer 1.5s ease-in-out;
        }

        @keyframes card-shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .game-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
        }

        .game-poster {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--deep-blue), var(--silver));
            border-radius: 15px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }

        .game-poster::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: poster-shine 3s ease-in-out infinite;
        }

        @keyframes poster-shine {
            0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

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

        .game-card .cta-button {
            margin-top: 1rem;
            padding: 0.8rem 2rem;
            font-size: 1rem;
        }

        /* Disclaimer Section */
        .disclaimer-section {
            padding: 2rem;
            background: rgba(0, 0, 0, 0.3);
            text-align: center;
            border-top: 2px solid var(--silver);
        }

        .disclaimer-text {
            max-width: 1000px;
            margin: 0 auto;
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: var(--deep-blue);
            padding: 2rem;
            text-align: center;
            border-top: 3px solid var(--gold);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--silver);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        .footer-copyright {
            opacity: 0.7;
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        /* Age Gate Modal */
        .age-gate {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            backdrop-filter: blur(10px);
        }

        .age-gate.hidden {
            display: none;
        }

        .age-gate-content {
            background: var(--gradient-blue);
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            border: 3px solid var(--gold);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            animation: modal-enter 0.5s ease-out;
        }

        @keyframes modal-enter {
            from { opacity: 0; transform: scale(0.8) translateY(-50px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .age-gate h2 {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .age-gate p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .age-confirm-btn {
            background: linear-gradient(45deg, var(--gold), #ffed4a);
            color: var(--deep-blue);
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0.5rem;
        }

        .age-confirm-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }

        .age-decline-btn {
            background: transparent;
            color: var(--silver);
            border: 2px solid var(--silver);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0.5rem;
        }

        .age-decline-btn:hover {
            background: var(--silver);
            color: var(--deep-blue);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #games2 {
                display: block;
            }

            #games {
                display: none;
            }

            .nav-menu {
                display: none;
            }

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

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

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

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .header-content {
                padding: 0 1rem;
            }
        }

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

            .age-gate-content {
                margin: 1rem;
                padding: 2rem;
            }

            .game-poster {
                width: 150px;
                height: 150px;
                font-size: 2rem;
            }
        }