:root {
            --bg-color: #121212;
            --text-color: #f0f0f0;
            --accent-blue: #00FFFF;
            --accent-magenta: #FF00FF;
            --border-color: #333;
            --font-family: 'Courier New', Courier, monospace;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-magenta);
            text-decoration: none;
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--accent-blue);
        }
        
        .burger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-color);
            z-index: 1001;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100%;
                background-color: var(--bg-color);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
                border-left: 1px solid var(--border-color);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu a {
                font-size: 1.5rem;
                padding: 1.5rem;
                display: block;
            }

            .burger {
                display: block;
            }
        }

        main {
            padding-top: 80px;
            flex: 1;
        }

        section {
            padding: 4rem 0;
        }
        
        h1 {
            font-size: 2.5rem;
            color: var(--accent-blue);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 1.8rem;
            color: var(--accent-magenta);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        p, li {
            margin-bottom: 1rem;
        }
        
        ul {
            list-style-type: disc;
            padding-left: 20px;
        }
        
        a {
            color: var(--accent-magenta);
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 2rem 0;
            font-size: 0.8rem;
            text-align: center;
            color: #777;
            border-top: 1px solid var(--border-color);
        }
        
        /* Footer */
        footer {
            background-color: #0d0d0d;
            padding: 2rem 0;
            border-top: 1px solid var(--border-color);
            margin-top: auto;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            color: var(--accent-blue);
            text-transform: uppercase;
        }

        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--accent-magenta);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            border-top: 1px solid var(--border-color);
            padding-top: 1rem;
            color: #777;
        }

