@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

        :root {
            --primary-color: #0000FF;
            --secondary-color: #FF00FF;
            --accent-color: #6A0DAD;
            --text-color: #ffffff;
            --background-color: #1a0f30;
            --light-accent: #00FFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            text-shadow: 2px 2px 5px rgba(255, 0, 255, 0.5);
        }

        h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.1;
            color: var(--secondary-color);
            text-align: center;
        }

        h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 20px;
            text-align: left;
            color: var(--light-accent);
        }

        p, ul {
            font-size: clamp(1rem, 2vw, 1.2rem);
        }
        
        main {
            padding: 120px 5% 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background-color: rgba(26, 15, 48, 0.9);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--secondary-color);
            transition: all 0.3s ease;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--secondary-color);
            text-decoration: none;
            text-shadow: 0 0 10px var(--secondary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1rem;
            padding: 10px 15px;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--light-accent);
            text-shadow: 0 0 10px var(--light-accent);
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }

        .burger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--text-color);
            transition: all 0.3s ease-in-out;
        }

        .burger-menu.active .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
        .burger-menu.active .bar2 { opacity: 0; }
        .burger-menu.active .bar3 { transform: rotate(45deg) translate(-5px, -6px); }

        .nav-links {
            transition: transform 0.3s ease-in-out;
        }

        /* Main Content */
        section {
            margin-bottom: 40px;
        }
        
        ul {
            list-style: none;
            padding-left: 20px;
        }
        
        ul li {
            margin-bottom: 10px;
            position: relative;
        }
        
        ul li:before {
            content: '»';
            color: var(--secondary-color);
            font-weight: 700;
            position: absolute;
            left: -20px;
        }
        
        p {
            margin-bottom: 20px;
        }
        
        a {
            color: var(--light-accent);
        }

        /* Disclaimer */
        .disclaimer {
            background-color: var(--background-color);
            color: #888;
            font-size: 0.8rem;
            text-align: center;
            padding: 20px 5%;
            border-top: 1px solid #333;
        }

        /* Footer */
        footer {
            background-color: var(--accent-color);
            padding: 40px 5%;
            text-align: center;
            font-size: 0.9rem;
        }

        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: var(--secondary-color);
            text-decoration: none;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--light-accent);
        }

        .contact-info p {
            margin: 5px 0;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 70%;
                background-color: rgba(26, 15, 48, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
            }
            .nav-links.active {
                transform: translateX(0);
            }
            .nav-links li {
                margin: 20px 0;
            }
            .burger-menu {
                display: flex;
            }
            .footer .container {
                flex-direction: column;
            }
        }

