:root {
            --primary-color: #00ffcc;
            --secondary-color: #ff00ff;
            --dark-bg: #0a0a14;
            --darker-bg: #05050a;
            --light-text: #e0e0ff;
            --accent-color: #ff0099;
            --card-bg: rgba(15, 15, 30, 0.8);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(5, 5, 10, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--primary-color);
            box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }

        .burger span {
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        main {
            margin-top: 80px;
            padding: 50px 0;
        }

        .cookie-container {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 0 30px rgba(255, 0, 153, 0.3);
            border: 1px solid rgba(255, 0, 153, 0.4);
        }

        h1 {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--primary-color);
            text-align: center;
        }

        h2 {
            font-size: 24px;
            margin: 30px 0 15px;
            color: var(--secondary-color);
        }

        h3 {
            font-size: 20px;
            margin: 25px 0 10px;
            color: var(--primary-color);
        }

        p {
            margin-bottom: 15px;
            color: var(--light-text);
        }

        ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        li {
            margin-bottom: 10px;
            color: var(--light-text);
        }

        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .cookie-type {
            background-color: var(--darker-bg);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(0, 255, 204, 0.3);
        }

        .cookie-type h3 {
            color: var(--primary-color);
            margin-top: 0;
        }

        .cookie-settings {
            background-color: var(--darker-bg);
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            border: 1px solid rgba(255, 0, 153, 0.3);
        }

        .cookie-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(224, 224, 255, 0.1);
        }

        .cookie-option:last-child {
            border-bottom: none;
        }

        .cookie-option-info {
            flex: 1;
        }

        .cookie-option-title {
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .cookie-option-desc {
            font-size: 14px;
            color: rgba(224, 224, 255, 0.8);
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(224, 224, 255, 0.3);
            transition: .4s;
            border-radius: 30px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: var(--primary-color);
        }

        input:checked + .slider:before {
            transform: translateX(30px);
        }

        .cookie-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .cookie-btn {
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            font-size: 16px;
        }

        .cookie-accept {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: var(--darker-bg);
        }

        .cookie-accept:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 255, 204, 0.5);
        }

        .cookie-save {
            background-color: var(--card-bg);
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
        }

        .cookie-save:hover {
            background-color: rgba(0, 255, 204, 0.1);
        }

        .last-updated {
            text-align: center;
            margin-top: 30px;
            font-style: italic;
            color: rgba(224, 224, 255, 0.7);
        }

        footer {
            padding: 50px 0;
            background-color: var(--dark-bg);
            border-top: 1px solid var(--primary-color);
            margin-top: 50px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .footer-column ul {
            list-style: none;
            margin-left: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
        }

        .footer-column p {
            color: var(--light-text);
            margin-bottom: 10px;
        }

        .copyright {
            margin-top: 40px;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(224, 224, 255, 0.1);
            color: rgba(224, 224, 255, 0.7);
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(5, 5, 10, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            }

            .nav-menu.active {
                transform: translateY(0);
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .burger {
                display: flex;
            }

            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 22px;
            }

            h3 {
                font-size: 18px;
            }

            .cookie-buttons {
                flex-direction: column;
            }
        }

