@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@400;700&display=swap');

        :root {
            --primary-color: #00ff00;
            --secondary-color: #0000ff;
            --accent-color: #ff00ff;
            --background-color: #0d0d1a;
            --text-color: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --border-color: rgba(0, 255, 255, 0.5);
            --form-bg: rgba(0, 0, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            background-color: var(--background-color);
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(13, 13, 26, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--primary-color);
            text-decoration: none;
            text-shadow: 0 0 5px var(--primary-color);
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            list-style: none;
            display: flex;
        }

        .nav-menu li {
            margin-left: 20px;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--accent-color);
            text-shadow: 0 0 8px var(--accent-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu span {
            width: 30px;
            height: 3px;
            background-color: var(--primary-color);
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }

        /* Main Content */
        main {
            padding-top: 120px;
            padding-bottom: 80px;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary-color);
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
        }

        h2 {
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 15px;
        }

        h3 {
            font-size: 1.4rem;
            margin-top: 25px;
            margin-bottom: 10px;
            color: var(--accent-color);
        }

        p, ul {
            margin-bottom: 15px;
        }

        ul {
            padding-left: 20px;
            list-style-type: disc;
        }

        li {
            margin-bottom: 5px;
        }
        
        .disclaimer {
            padding: 40px 0;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid var(--border-color);
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .disclaimer p {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Footer */
        footer {
            background-color: #0d0d1a;
            color: var(--text-color);
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid var(--border-color);
        }

        footer .container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-links {
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            margin: 0 15px;
            font-family: 'Orbitron', sans-serif;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-info p {
            margin-bottom: 10px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            color: var(--text-color);
            padding: 20px;
            display: none;
            justify-content: center;
            align-items: center;
            gap: 20px;
            border-top: 2px solid var(--primary-color);
            z-index: 1002;
        }
        
        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .cookie-banner button {
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: var(--background-color);
            border: none;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        .cookie-banner button:hover {
            background-color: var(--accent-color);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(13, 13, 26, 0.95);
                border-bottom: 2px solid var(--border-color);
                padding: 20px 0;
                text-align: center;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 10px 0;
            }

            .burger-menu {
                display: flex;
            }
        }

