* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: #0b0e1f;
            color: #f0f0ff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* NEON THEME */
        :root {
            --neon-blue: #00f5ff;
            --neon-pink: #ff00c7;
            --neon-purple: #aa00ff;
            --neon-glow: 0 0 15px;
            --bg-dark: #0b0e1f;
            --bg-card: #14182f;
            --text-dim: #b0b8ff;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1e30;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--neon-blue);
            border-radius: 10px;
        }
        
        /* Header */
        .header {
            background: rgba(11, 14, 31, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-blue);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-menu a {
            font-weight: 600;
            transition: 0.3s;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-menu a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-pink);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--neon-blue);
        }
        
        /* Hero Section */
        .hero {
            min-height: 80vh;
            background: url('https://images.unsplash.com/photo-1606163236163-4b35c0e7b5b0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 14, 31, 0.7);
            backdrop-filter: blur(3px);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #fff, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(0,245,255,0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            color: #ddd;
            margin-bottom: 30px;
            text-shadow: 0 0 10px rgba(0,245,255,0.5);
        }
        
        .hero-btn {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            border: 2px solid var(--neon-pink);
            color: var(--neon-pink);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            transition: 0.3s;
            box-shadow: 0 0 20px rgba(255,0,199,0.3);
        }
        
        .hero-btn:hover {
            background: var(--neon-pink);
            color: #0b0e1f;
            box-shadow: 0 0 40px var(--neon-pink);
        }
        
        /* Games Section */
        .games {
            padding: 80px 0;
            background: var(--bg-dark);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 50px;
            font-weight: 700;
        }
        
        .section-title span {
            color: var(--neon-purple);
            text-shadow: 0 0 20px var(--neon-purple);
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .game-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--neon-blue);
            box-shadow: 0 0 30px rgba(0,245,255,0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 50px var(--neon-blue);
        }
        
        .game-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .game-info {
            padding: 20px;
        }
        
        .game-info h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--neon-pink);
        }
        
        .game-info p {
            color: var(--text-dim);
            margin-bottom: 15px;
        }
        
        .play-btn {
            display: inline-block;
            padding: 10px 25px;
            background: transparent;
            border: 1px solid var(--neon-purple);
            color: var(--neon-purple);
            border-radius: 30px;
            font-weight: 600;
            transition: 0.3s;
        }
        
        .play-btn:hover {
            background: var(--neon-purple);
            color: #0b0e1f;
            box-shadow: 0 0 30px var(--neon-purple);
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background: #0f1325;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-item {
            text-align: center;
            padding: 30px 20px;
            background: var(--bg-card);
            border-radius: 15px;
            border: 1px solid var(--neon-pink);
            transition: 0.3s;
        }
        
        .feature-item:hover {
            border-color: var(--neon-blue);
            box-shadow: 0 0 40px var(--neon-blue);
        }
        
        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
            text-shadow: 0 0 30px var(--neon-blue);
        }
        
        .feature-item h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #fff;
        }
        
        .feature-item p {
            color: var(--text-dim);
        }
        
        /* Contact Form */
        .contact {
            padding: 80px 0;
            background: var(--bg-dark);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--bg-card);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--neon-purple);
            box-shadow: 0 0 30px rgba(170,0,255,0.3);
        }
        
        .contact-form h2 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.2rem;
            color: var(--neon-purple);
            text-shadow: 0 0 15px var(--neon-purple);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border: 1px solid #333;
            border-radius: 10px;
            color: #fff;
            font-family: inherit;
            transition: 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-purple);
            box-shadow: 0 0 15px var(--neon-purple);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: transparent;
            border: 2px solid var(--neon-purple);
            color: var(--neon-purple);
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .submit-btn:hover {
            background: var(--neon-purple);
            color: #0b0e1f;
            box-shadow: 0 0 40px var(--neon-purple);
        }
        
        /* Footer */
        .footer {
            background: #0a0c1a;
            border-top: 1px solid var(--neon-blue);
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .footer-logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .footer-links a {
            font-weight: 500;
            transition: 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            border-top: 1px solid #222;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #888;
        }
        
        .age-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,0,0,0.2);
            padding: 5px 15px;
            border-radius: 30px;
            border: 1px solid #ff4444;
            color: #ff8888;
        }
        
        .age-badge i {
            font-size: 1.2rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(11,14,31,0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                backdrop-filter: blur(10px);
                border-bottom: 1px solid var(--neon-blue);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: #0b0e1f;
            color: #f0f0ff;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        :root {
            --neon-blue: #00f5ff;
            --neon-pink: #ff00c7;
            --neon-purple: #aa00ff;
            --neon-glow: 0 0 15px;
            --bg-dark: #0b0e1f;
            --bg-card: #14182f;
            --text-dim: #b0b8ff;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1e30;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--neon-blue);
            border-radius: 10px;
        }
        
        /* Header */
        .header {
            background: rgba(11, 14, 31, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-blue);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-menu a {
            font-weight: 600;
            transition: 0.3s;
            padding: 5px 0;
        }
        
        .nav-menu a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .menu-toggle {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--neon-blue);
        }
        
        /* Main Content */
        .main {
            flex: 1;
            padding: 60px 0;
            background: var(--bg-dark);
        }
        
        .content-card {
            background: var(--bg-card);
            border: 1px solid var(--neon-purple);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 0 30px rgba(170,0,255,0.3);
        }
        
        .content-card h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--neon-purple);
            text-shadow: 0 0 15px var(--neon-purple);
        }
        
        .content-card h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--neon-blue);
        }
        
        .content-card p, .content-card li {
            color: var(--text-dim);
            margin-bottom: 15px;
        }
        
        .content-card ul, .content-card ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .content-card li {
            margin-bottom: 8px;
        }
        
        .content-card strong {
            color: #fff;
        }
        
        .content-card a {
            color: var(--neon-pink);
            text-decoration: underline;
        }
        
        .content-card a:hover {
            color: var(--neon-blue);
        }
        
        /* Footer */
        .footer {
            background: #0a0c1a;
            border-top: 1px solid var(--neon-blue);
            padding: 40px 0 20px;
            margin-top: auto;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .footer-logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            border-top: 1px solid #222;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #888;
        }
        
        .age-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,0,0,0.2);
            padding: 5px 15px;
            border-radius: 30px;
            border: 1px solid #ff4444;
            color: #ff8888;
        }
        
        .age-badge i {
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(11,14,31,0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                backdrop-filter: blur(10px);
                border-bottom: 1px solid var(--neon-blue);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: #0b0e1f;
            color: #f0f0ff;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        :root {
            --neon-blue: #00f5ff;
            --neon-pink: #ff00c7;
            --neon-purple: #aa00ff;
            --neon-glow: 0 0 15px;
            --bg-dark: #0b0e1f;
            --bg-card: #14182f;
            --text-dim: #b0b8ff;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1e30;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--neon-blue);
            border-radius: 10px;
        }
        
        /* Header */
        .header {
            background: rgba(11, 14, 31, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-blue);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-menu a {
            font-weight: 600;
            transition: 0.3s;
            padding: 5px 0;
        }
        
        .nav-menu a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .menu-toggle {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--neon-blue);
        }
        
        /* Main Content */
        .main {
            flex: 1;
            padding: 60px 0;
            background: var(--bg-dark);
        }
        
        .content-card {
            background: var(--bg-card);
            border: 1px solid var(--neon-pink);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 0 30px rgba(255,0,199,0.3);
        }
        
        .content-card h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--neon-pink);
            text-shadow: 0 0 15px var(--neon-pink);
        }
        
        .content-card h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--neon-blue);
        }
        
        .content-card p, .content-card li {
            color: var(--text-dim);
            margin-bottom: 15px;
        }
        
        .content-card ul, .content-card ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .content-card li {
            margin-bottom: 8px;
        }
        
        .content-card strong {
            color: #fff;
        }
        
        .content-card a {
            color: var(--neon-pink);
            text-decoration: underline;
        }
        
        .content-card a:hover {
            color: var(--neon-blue);
        }
        
        /* Footer */
        .footer {
            background: #0a0c1a;
            border-top: 1px solid var(--neon-blue);
            padding: 40px 0 20px;
            margin-top: auto;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .footer-logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            border-top: 1px solid #222;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #888;
        }
        
        .age-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,0,0,0.2);
            padding: 5px 15px;
            border-radius: 30px;
            border: 1px solid #ff4444;
            color: #ff8888;
        }
        
        .age-badge i {
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(11,14,31,0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                backdrop-filter: blur(10px);
                border-bottom: 1px solid var(--neon-blue);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }