
        :root {
            --navy: #1a2332;
            --red: #e74c3c;
            --cream: #f4e4bc;
            --gold: #f39c12;
            --dark-bg: #0f1419;
            --gradient: linear-gradient(135deg, var(--navy) 0%, var(--dark-bg) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--dark-bg);
            color: var(--cream);
            overflow-x: hidden;
        }

        /* Animated Background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: var(--gradient);
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--gold);
            border-radius: 50%;
            animation: float 6s infinite linear;
            opacity: 0.7;
        }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
        }

        /* Navigation */
        .navbar {
            background: rgba(26, 35, 50, 0.95) !important;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar-brand {
            font-family: 'Orbitron', monospace;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--red) !important;
        }

        .navbar-nav .nav-link {
            color: var(--cream) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--gold) !important;
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--gradient);
        }

        .hero-content {
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-family: 'Orbitron', monospace;
            font-weight: 900;
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--red), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--cream);
            font-weight: 300;
        }

        .cta-button {
            background: linear-gradient(45deg, var(--red), var(--gold));
            border: none;
            padding: 1rem 2rem;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
            filter: brightness(1.1);
        }

        /* Sections */
        .section {
            padding: 5rem 0;
            position: relative;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--gold);
        }

        /* About Section */
        .about {
            background: rgba(26, 35, 50, 0.3);
        }

        .stats-card {
            background: rgba(231, 76, 60, 0.1);
            border: 1px solid var(--red);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .stats-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
        }

        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'Orbitron', monospace;
        }

        /* Game Section */
        .game-showcase {
            background: var(--gradient);
        }

        .game-card {
            background: rgba(15, 20, 25, 0.8);
            border: 1px solid var(--gold);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(243, 156, 18, 0.3);
        }

        .game-title {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            color: var(--red);
            margin-bottom: 1rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 0.5rem 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }

        .feature-list li i {
            color: var(--gold);
            margin-right: 1rem;
            width: 20px;
        }

        .platform-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .platform-icon {
            width: 40px;
            height: 40px;
            background: var(--navy);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .platform-icon:hover {
            background: var(--gold);
            transform: scale(1.1);
        }

        .screenshot-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .screenshot {
            width: 100%;
            height: 150px;
            background: linear-gradient(45deg, var(--navy), var(--red));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .screenshot:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        /* Contact Section */
        .contact {
            background: rgba(26, 35, 50, 0.3);
        }

        .contact-form {
            background: rgba(15, 20, 25, 0.6);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--gold);
            backdrop-filter: blur(10px);
        }

        .form-control {
            background: rgba(244, 228, 188, 0.1);
            border: 1px solid var(--cream);
            color: var(--cream);
            border-radius: 10px;
            padding: 0.75rem;
        }

        .form-control:focus {
            background: rgba(244, 228, 188, 0.2);
            border-color: var(--gold);
            color: var(--cream);
            box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
        }

        .form-control::placeholder {
            color: rgba(244, 228, 188, 0.6);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cream);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--gold);
            color: var(--dark-bg);
            transform: translateY(-5px);
        }

        /* Footer */
        .footer {
            background: var(--navy);
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid var(--gold);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Privacy Policy Styles */
        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(26, 35, 50, 0.3);
            border-radius: 15px;
            margin-top: 2rem;
        }

        .privacy-content h2 {
            color: var(--gold);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .privacy-content h3 {
            color: var(--red);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .toc {
            background: rgba(15, 20, 25, 0.6);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .toc ul {
            list-style: none;
            padding: 0;
        }

        .toc li {
            padding: 0.3rem 0;
        }

        .toc a {
            color: var(--cream);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .toc a:hover {
            color: var(--gold);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .tagline {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .stats-number {
                font-size: 2rem;
            }

            .game-title {
                font-size: 1.5rem;
            }

            .navbar-nav .nav-link {
                margin: 0.5rem 0;
            }
        }

        .hidden {
            display: none;
        }
   