:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --cyber-purple: #d300c5;
            --matrix-green: #00ff41;
            --dark-void: #0d0221;
            --hacker-text: #f8f8f8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark-void);
            color: var(--hacker-text);
            overflow-x: hidden;
            padding-top: 80px;
            line-height: 1.6;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            border-bottom: 1px solid var(--electric-blue);
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(5px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-pink);
            text-decoration: none;
            text-shadow: 0 0 5px var(--neon-pink);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--electric-blue);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--matrix-green);
            text-shadow: 0 0 5px var(--matrix-green);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--matrix-green);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--electric-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }

        .cookie-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--electric-blue);
            text-align: center;
        }

        h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--neon-pink);
        }

        h3 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: var(--matrix-green);
        }

        p {
            margin-bottom: 15px;
        }

        ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
        }

        a {
            color: var(--electric-blue);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .cookie-type {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--cyber-purple);
            border-radius: 10px;
            padding: 20px;
        }

        .cookie-type h3 {
            margin-top: 0;
        }

        .last-updated {
            text-align: right;
            font-style: italic;
            margin-top: 40px;
            color: var(--electric-blue);
        }

        footer {
            background-color: rgba(13, 2, 33, 0.9);
            padding: 50px 0 20px;
            border-top: 1px solid var(--electric-blue);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--neon-pink);
            text-decoration: none;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-links h3 {
            color: var(--electric-blue);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: var(--hacker-text);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--matrix-green);
            padding-left: 5px;
            text-decoration: none;
        }

        .contact-info p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark-void);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s ease;
                z-index: 999;
            }

            nav ul.active {
                left: 0;
            }

            nav ul li {
                margin: 20px 0;
            }

            .burger {
                display: block;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }
        }

