@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');
        :root {
            --primary-color: #00ffff; /* Neon Blue */
            --secondary-color: #ff00ff; /* Fuchsia */
            --background-color: #1a1a1a; /* Dark Gray */
            --text-color: #e0e0e0;
            --accent-color: #333333;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary-color);
            text-shadow: 0 0 5px var(--primary-color);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.9);
            padding: 1rem 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--primary-color);
            text-shadow: 0 0 8px var(--primary-color);
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .nav-menu a:hover {
            color: var(--secondary-color);
        }
        .nav-menu a:hover::after {
            transform: scaleX(1);
        }
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .burger-menu .bar {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
            box-shadow: 0 0 5px var(--primary-color);
        }
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--accent-color);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3rem;
                transition: right 0.3s ease;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
            }
            .nav-menu.active {
                right: 0;
            }
            .burger-menu {
                display: flex;
            }
        }
        /* Page Content */
        .content {
            padding-top: 150px;
            padding-bottom: 50px;
        }
        .content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
        }
        .content h2 {
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 15px;
        }
        .content p {
            margin-bottom: 15px;
        }
        .content ol {
            margin-bottom: 15px;
            padding-left: 20px;
        }
        .content li {
            margin-bottom: 5px;
        }
        .disclaimer {
            text-align: center;
            padding: 20px 0;
            font-size: 0.9rem;
            color: #888;
        }
        /* Footer */
        footer {
            background-color: var(--accent-color);
            padding: 50px 0 20px;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
            text-align: left;
        }
        .footer-section h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .footer-section a {
            color: var(--text-color);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: var(--secondary-color);
        }
        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

