:root {
            --primary-color: #00ffcc;
            --secondary-color: #ff00ff;
            --accent-color: #00ffff;
            --text-color: #ffffff;
            --bg-color: #0a0a14;
            --card-bg: rgba(10, 10, 20, 0.7);
            --gradient: linear-gradient(135deg, #00ffcc 0%, #ff00ff 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Orbitron', 'Arial', sans-serif;
            line-height: 1.6;
        }
        
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(0, 255, 204, 0.1)" stroke-width="0.5"/></svg>');
            z-index: -1;
            opacity: 0.3;
            pointer-events: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 20, 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;
            text-shadow: 0 0 10px rgba(0, 255, 204, 0.7);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .nav-menu a:hover {
            color: var(--primary-color);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            position: relative;
            width: 30px;
            height: 25px;
        }
        
        .burger span {
            position: absolute;
            width: 100%;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        .burger span:nth-child(1) {
            top: 0;
        }
        
        .burger span:nth-child(2) {
            top: 11px;
        }
        
        .burger span:nth-child(3) {
            top: 22px;
        }
        
        .burger.active span:nth-child(1) {
            top: 11px;
            transform: rotate(45deg);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger.active span:nth-child(3) {
            top: 11px;
            transform: rotate(-45deg);
        }
        
        main {
            padding: 100px 0 50px;
            background: linear-gradient(135deg, rgba(10, 10, 20, 0.9) 0%, rgba(30, 10, 40, 0.9) 100%);
            min-height: 100vh;
            position: relative;
        }
        
        main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="none"/><path d="M0,0 L200,200 M200,0 L0,200" stroke="rgba(255, 0, 255, 0.1)" stroke-width="1"/></svg>');
            z-index: -1;
            opacity: 0.3;
        }
        
        .page-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
            width: 100%;
            text-transform: uppercase;
            color: var(--primary-color);
            letter-spacing: 2px;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gradient);
        }
        
        .cookie-content {
            background: var(--card-bg);
            border-radius: 0;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border-left: 3px solid var(--primary-color);
            backdrop-filter: blur(5px);
        }
        
        .cookie-section {
            margin-bottom: 30px;
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-section li {
            margin-bottom: 8px;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .cookie-type {
            background: rgba(10, 10, 20, 0.5);
            border-radius: 0;
            padding: 20px;
            border-left: 3px solid var(--primary-color);
            backdrop-filter: blur(5px);
        }
        
        .cookie-type h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        footer {
            background: rgba(10, 10, 20, 0.95);
            padding: 50px 0 20px;
            color: var(--text-color);
            border-top: 1px solid var(--primary-color);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 255, 204, 0.2);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(10, 10, 20, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: all 0.5s ease;
                border-left: 2px solid var(--primary-color);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
                z-index: 1001;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .cookie-content {
                padding: 20px;
            }
        }

