:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --cyber-purple: #d300c5;
            --matrix-green: #00ff41;
            --dark-bg: #0d0221;
            --text-light: #f8f8f8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            border-bottom: 1px solid var(--electric-blue);
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(5px);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: var(--neon-pink);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 10px var(--neon-pink);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--electric-blue);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--matrix-green);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--electric-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        h1 {
            color: var(--electric-blue);
            margin-bottom: 30px;
            text-align: center;
            font-size: 36px;
        }
        
        h2 {
            color: var(--neon-pink);
            margin: 30px 0 15px;
            font-size: 28px;
        }
        
        h3 {
            color: var(--matrix-green);
            margin: 20px 0 10px;
            font-size: 22px;
        }
        
        p, ul {
            margin-bottom: 15px;
        }
        
        ul {
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .last-updated {
            text-align: right;
            font-style: italic;
            margin-top: 40px;
            color: var(--electric-blue);
        }
        
        footer {
            background-color: rgba(5, 217, 232, 0.05);
            padding: 40px 0 20px;
            border-top: 1px solid var(--electric-blue);
            margin-top: 50px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--neon-pink);
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--matrix-green);
            padding-left: 5px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(5, 217, 232, 0.2);
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                z-index: 999;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 15px 0;
            }
        
            .burger {
                display: block;
            }
            
            h1 {
                font-size: 28px;
            }
            
            h2 {
                font-size: 24px;
            }
        }

