:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --cyber-purple: #d300c5;
            --matrix-green: #00ff41;
            --dark-matter: #0d0221;
            --future-gray: #2a2b2e;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark-matter);
            color: white;
            line-height: 1.6;
            padding-top: 80px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--electric-blue);
            box-shadow: 0 0 15px var(--electric-blue);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 5px rgba(255, 42, 109, 0.3);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--electric-blue);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--electric-blue);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background-color: var(--electric-blue);
            transition: all 0.3s ease;
        }

        .policy-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .policy-content h1 {
            font-size: 2.5rem;
            color: var(--electric-blue);
            margin-bottom: 2rem;
            text-align: center;
        }

        .policy-content h2 {
            font-size: 1.8rem;
            color: var(--neon-pink);
            margin: 2rem 0 1rem;
            border-bottom: 1px solid var(--electric-blue);
            padding-bottom: 0.5rem;
        }

        .policy-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .policy-content ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .policy-content li {
            margin-bottom: 0.8rem;
        }

        footer {
            background-color: var(--future-gray);
            color: white;
            padding: 3rem 2rem;
            border-top: 1px solid var(--electric-blue);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer-links h3,
        .footer-contact h3 {
            color: var(--electric-blue);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style-type: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--electric-blue);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .contact-icon {
            margin-right: 1rem;
            color: var(--electric-blue);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(5, 217, 232, 0.2);
            font-size: 0.9rem;
            color: var(--electric-blue);
        }

        .disclaimer {
            background-color: var(--dark-matter);
            padding: 2rem;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            border-top: 1px solid var(--electric-blue);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--future-gray);
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--electric-blue);
            box-shadow: 0 -5px 20px rgba(5, 217, 232, 0.2);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
            margin-bottom: 1rem;
        }

        .cookie-text p {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .cookie-text a {
            color: var(--electric-blue);
            text-decoration: none;
        }

        .cookie-text a:hover {
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-btn {
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: linear-gradient(45deg, var(--neon-pink), var(--cyber-purple));
            color: white;
            border: none;
        }

        .cookie-decline {
            background-color: transparent;
            color: var(--electric-blue);
            border: 1px solid var(--electric-blue);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--dark-matter);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                transition: right 0.5s ease;
                z-index: 1000;
                border-left: 1px solid var(--electric-blue);
            }

            .nav-links.active {
                right: 0;
            }

            .burger {
                display: flex;
            }

            .policy-content h1 {
                font-size: 2rem;
            }

            .policy-content h2 {
                font-size: 1.5rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

