@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@400;700&display=swap');

        :root {
            --primary-color: #00FFFF;
            --secondary-color: #FF00FF;
            --background-color: #1a1a2e;
            --text-color: #ffffff;
            --accent-color: #00FF7F;
            --footer-bg: #161628;
            --header-bg: rgba(26, 26, 46, 0.9);
            --form-bg: #2a2a3e;
            --border-color: #4a4a5e;
        }

        * {
            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);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary-color);
            text-align: center;
            text-transform: uppercase;
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
        }
        
        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
            margin: 10px auto 0;
        }
        
        h3 {
            font-size: 1.8rem;
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--accent-color);
            text-align: left;
        }
        
        p, li {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--header-bg);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--border-color);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul a {
            font-size: 1.1rem;
            font-weight: 700;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        nav ul a:hover {
            color: var(--secondary-color);
            text-shadow: 0 0 10px var(--secondary-color);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            transition: all 0.3s ease;
        }

        .burger-menu div {
            width: 30px;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        .nav-links.active {
            transform: translateX(0);
        }

        .burger-menu.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger-menu.active .line2 {
            opacity: 0;
        }

        .burger-menu.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        main {
            padding: 100px 0;
        }
        
        section {
            padding: 80px 0;
        }
        
        ul {
            margin-left: 20px;
            list-style-type: disc;
        }
        
        ul li {
            margin-bottom: 10px;
        }

        #disclaimer {
            background-color: #0d0d1a;
            color: #888;
            padding: 20px 0;
            font-size: 0.9rem;
            text-align: center;
        }
        
        .disclaimer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        footer {
            background-color: var(--footer-bg);
            padding: 40px 0;
            border-top: 2px solid var(--border-color);
            text-align: center;
            font-size: 0.9rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-nav ul, .footer-contact {
            list-style: none;
        }
        
        .footer-nav {
            flex-grow: 1;
            text-align: left;
        }
        
        .footer-nav li {
            margin-bottom: 10px;
        }
        
        .footer-nav a {
            color: #ccc;
            transition: color 0.3s ease;
        }
        
        .footer-nav a:hover {
            color: var(--primary-color);
        }
        
        .footer-contact {
            flex-grow: 1;
            text-align: right;
        }
        
        .footer-contact p {
            margin-bottom: 5px;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #333;
            color: #fff;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            font-size: 0.9rem;
            transform: translateY(150%);
            transition: transform 0.5s ease-in-out;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .cookie-banner .cookie-button {
            background-color: var(--accent-color);
            color: #1a1a2e;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .cookie-banner .cookie-button:hover {
            background-color: var(--primary-color);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .header-content {
                flex-wrap: wrap;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            nav {
                width: 100%;
            }
            
            .nav-links {
                display: flex;
                flex-direction: column;
                position: fixed;
                right: 0;
                top: 70px;
                background: rgba(26, 26, 46, 0.95);
                backdrop-filter: blur(10px);
                width: 70%;
                height: calc(100vh - 70px);
                padding: 40px 0;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                border-left: 2px solid var(--border-color);
            }
            
            .nav-links li {
                margin: 20px 0;
                text-align: center;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-nav, .footer-contact {
                text-align: center;
                margin-bottom: 20px;
            }
        }

