* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #1a1a1a;
            color: #dfe6e9;
            line-height: 1.6;
            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" stroke="rgba(255,62,65,0.03)" stroke-width="0.5"/></svg>');
            z-index: -1;
            pointer-events: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.9);
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid #ff3e41;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #f9ca24;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Impact', sans-serif;
            text-shadow: 3px 3px 0 #ff3e41;
            transform: skew(-5deg);
            display: inline-block;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-links a {
            color: #dfe6e9;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
            position: relative;
        }
        
        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff3e41;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: #f9ca24;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            position: relative;
            width: 30px;
            height: 25px;
        }
        
        .burger span {
            position: absolute;
            width: 100%;
            height: 3px;
            background-color: #f9ca24;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .burger span:nth-child(1) {
            top: 0px;
        }
        
        .burger span:nth-child(2) {
            top: 8px;
            width: 70%;
        }
        
        .burger span:nth-child(3) {
            top: 16px;
        }
        
        .burger.active span:nth-child(1) {
            top: 8px;
            transform: rotate(135deg);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
        
        .burger.active span:nth-child(3) {
            top: 8px;
            transform: rotate(-135deg);
        }
        
        main {
            margin-top: 80px;
            padding: 50px 0;
        }
        
        .cookie-content {
            background-color: #1a1a1a;
            border-radius: 0;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 3px solid #ff3e41;
            position: relative;
        }
        
        .cookie-content::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255, 62, 65, 0.05),
                rgba(255, 62, 65, 0.05) 10px,
                rgba(255, 62, 65, 0.02) 10px,
                rgba(255, 62, 65, 0.02) 20px
            );
            z-index: -1;
        }
        
        .cookie-content h1 {
            font-size: 36px;
            color: #f9ca24;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Impact', sans-serif;
            position: relative;
        }
        
        .cookie-content h1::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: #ff3e41;
        }
        
        .cookie-content h2 {
            font-size: 28px;
            color: #f9ca24;
            margin: 30px 0 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Impact', sans-serif;
            position: relative;
        }
        
        .cookie-content h2::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ff3e41;
        }
        
        .cookie-content h3 {
            font-size: 22px;
            color: #f9ca24;
            margin: 25px 0 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Impact', sans-serif;
            position: relative;
        }
        
        .cookie-content h3::before {
            content: "▶";
            position: absolute;
            left: -20px;
            color: #ff3e41;
        }
        
        .cookie-content p {
            margin-bottom: 15px;
        }
        
        .cookie-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-content li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        
        .cookie-content li::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: #f9ca24;
        }
        
        .cookie-content a {
            color: #f9ca24;
            text-decoration: none;
        }
        
        .cookie-content 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: #1a1a1a;
            border-radius: 0;
            padding: 20px;
            border-left: 4px solid #ff3e41;
            position: relative;
        }
        
        .cookie-type::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255, 62, 65, 0.05),
                rgba(255, 62, 65, 0.05) 10px,
                rgba(255, 62, 65, 0.02) 10px,
                rgba(255, 62, 65, 0.02) 20px
            );
            z-index: -1;
        }
        
        .cookie-type h3 {
            margin-top: 0;
            color: #f9ca24;
        }
        
        footer {
            background-color: #1a1a1a;
            color: #dfe6e9;
            padding: 50px 0 20px;
            margin-top: 50px;
            position: relative;
        }
        
        footer::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="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(249,202,36,0.1)" stroke-width="1"/></svg>');
            z-index: -1;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #f9ca24;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Impact', sans-serif;
            position: relative;
        }
        
        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ff3e41;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-column ul li::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: #ff3e41;
        }
        
        .footer-column ul li a {
            color: #dfe6e9;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #f9ca24;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 2px solid #ff3e41;
            font-size: 14px;
            color: #636e72;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background-color: #1a1a1a;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
                border-left: 3px solid #ff3e41;
                z-index: 1001;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
                z-index: 1002;
            }
            
            .cookie-content {
                padding: 20px;
            }
        }

