:root {
            --neon-pink: #ff2a6d;
            --neon-blue: #05d9e8;
            --dark-bg: #0d0221;
            --text-light: #d1f7ff;
            --accent-purple: #d300c5;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            padding-top: 80px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--neon-pink);
            box-shadow: 0 0 15px var(--neon-blue);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink);
        }
        .logo span {
            color: var(--neon-blue);
            text-shadow: 0 0 5px var(--neon-blue);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s;
        }
        nav ul li a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 5px var(--neon-blue);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--neon-blue);
            margin: 5px;
            transition: all 0.3s;
        }
        .cookie-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        h1 {
            font-size: 36px;
            color: var(--neon-pink);
            margin-bottom: 30px;
            text-align: center;
        }
        h2 {
            font-size: 28px;
            color: var(--neon-blue);
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 15px;
            font-size: 16px;
        }
        ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th, td {
            border: 1px solid var(--neon-blue);
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: rgba(5, 217, 232, 0.1);
            color: var(--neon-blue);
        }
        footer {
            background-color: rgba(13, 2, 33, 0.95);
            padding: 50px 20px 20px;
            border-top: 1px solid var(--neon-pink);
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-pink);
            margin-bottom: 15px;
        }
        .footer-links h3 {
            color: var(--neon-blue);
            margin-bottom: 20px;
            font-size: 20px;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links ul li {
            margin-bottom: 10px;
        }
        .footer-links ul li a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links ul li a:hover {
            color: var(--neon-blue);
        }
        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .contact-info i {
            margin-right: 10px;
            color: var(--neon-blue);
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 42, 109, 0.3);
        }
        .cookie-settings {
            background-color: rgba(5, 217, 232, 0.1);
            padding: 20px;
            border-radius: 5px;
            margin-top: 40px;
            border: 1px solid var(--neon-blue);
        }
        .cookie-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--dark-bg);
            border: 1px solid var(--neon-pink);
            transition: .4s;
            border-radius: 34px;
        }
        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 3px;
            background-color: var(--neon-blue);
            transition: .4s;
            border-radius: 50%;
        }
        input:checked + .slider {
            background-color: var(--dark-bg);
        }
        input:checked + .slider:before {
            transform: translateX(26px);
            background-color: var(--neon-pink);
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(13, 2, 33, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s;
                z-index: 999;
            }
            nav ul.active {
                right: 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: 30px;
            }
            h2 {
                font-size: 24px;
            }
            table {
                display: block;
                overflow-x: auto;
            }
        }

