* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2a2d34;
            --secondary: #f97316;
            --accent: #0891b2;
            --light: #f8fafc;
            --dark: #1e293b;
            --background: #f1f5f9;
            --text: #334155;
            --gradient: linear-gradient(135deg, #f97316 0%, #0891b2 100%);
            --retro-gradient: linear-gradient(135deg, #f97316 0%, #f59e0b 50%, #0891b2 100%);
        }
        
        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--background);
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.05) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(8, 145, 178, 0.05) 0%, transparent 25%),
                linear-gradient(45deg, rgba(249, 115, 22, 0.02) 25%, transparent 25%, transparent 50%, rgba(249, 115, 22, 0.02) 50%, rgba(249, 115, 22, 0.02) 75%, transparent 75%, transparent);
            background-size: 600px 600px, 600px 600px, 20px 20px;
            z-index: -1;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(42, 45, 52, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--light);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            color: var(--light);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            font-family: 'Courier New', monospace;
            text-transform: uppercase;
            position: relative;
        }
        
        .logo::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: var(--secondary);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--light);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            font-family: 'Courier New', monospace;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .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 {
            color: var(--secondary);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Privacy Content */
        .privacy-content {
            padding: 120px 0 50px;
            background-color: var(--background);
            position: relative;
        }
        
        .privacy-content::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            font-family: 'Courier New', monospace;
            text-transform: uppercase;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
        }
        
        .privacy-section {
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .privacy-section h2 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 20px;
            font-family: 'Courier New', monospace;
            text-transform: uppercase;
        }
        
        .privacy-section h3 {
            font-size: 1.4rem;
            color: var(--accent);
            margin: 25px 0 15px;
        }
        
        .privacy-section p {
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .privacy-section li {
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 70px 0 20px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient);
            opacity: 0.5;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--secondary);
            font-family: 'Courier New', monospace;
            text-transform: uppercase;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gradient);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }
        
        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .footer-links a:hover::after {
            width: 100%;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(249, 115, 22, 0.1);
            font-size: 0.9rem;
            color: var(--light);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: var(--light);
            padding: 20px;
            z-index: 1001;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-top: 1px solid rgba(249, 115, 22, 0.2);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
            color: var(--light);
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-family: 'Courier New', monospace;
            text-transform: uppercase;
        }
        
        .cookie-accept {
            background: var(--retro-gradient);
            color: var(--light);
        }
        
        .cookie-accept:hover {
            box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--light);
            border: 1px solid rgba(249, 115, 22, 0.3);
        }
        
        .cookie-decline:hover {
            background-color: rgba(249, 115, 22, 0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(42, 45, 52, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            
            .hamburger.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .privacy-section h2 {
                font-size: 1.5rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

