@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
        
        :root {
            --bg-color: #0d0d0d;
            --text-color: #f0f0f0;
            --primary-color: #00ff99;
            --secondary-color: #8a2be2;
            --accent-color: #ff69b4;
            --card-bg: #1a1a1a;
            --border-color: #333;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto Mono', monospace;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        h1, h2, h3 {
            color: var(--primary-color);
            text-transform: uppercase;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }
        
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: var(--accent-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background-color: rgba(13, 13, 13, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--primary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu .bar {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        main {
            padding-top: 60px;
            min-height: 80vh;
        }

        section {
            padding: 80px 0;
        }

        .content-section {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 40px;
        }
        
        .content-section h1 {
            margin-bottom: 20px;
        }

        .content-section h2 {
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--accent-color);
        }

        .content-section p {
            margin-bottom: 15px;
        }

        .content-section ul {
            margin-bottom: 20px;
            margin-left: 20px;
        }

        .content-section li {
            margin-bottom: 10px;
        }

        .disclaimer {
            text-align: center;
            padding: 20px;
            background-color: #1a1a1a;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: #aaa;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #222;
            color: var(--text-color);
            padding: 20px;
            border-radius: 10px;
            display: none;
            justify-content: space-between;
            align-items: center;
            border: 1px solid var(--border-color);
            z-index: 1001;
            opacity: 0;
            transform: translateY(100px);
        }
        
        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-buttons .btn {
            background-color: var(--primary-color);
            color: var(--bg-color);
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }
        
        .cookie-buttons .btn:hover {
            background-color: var(--accent-color);
        }

        footer {
            background-color: #1a1a1a;
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
        }
        
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .footer-info, .footer-links {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .footer-info p {
            margin-bottom: 10px;
        }
        
        .footer-links h3 {
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                background-color: rgba(13, 13, 13, 0.95);
                position: absolute;
                top: 65px;
                left: 0;
                border-top: 1px solid var(--border-color);
            }

            nav.active {
                display: flex;
            }

            nav ul {
                flex-direction: column;
                padding: 20px 0;
            }

            nav ul li {
                margin: 15px 0;
            }

            .burger-menu {
                display: flex;
            }
            
            .cookie-banner {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

