:root {
            --primary-color: #FF006E;
            --secondary-color: #8338EC;
            --accent-color: #3A86FF;
            --text-color: #FFFFFF;
            --bg-color: #0B0014;
            --section-bg: #1A0033;
            --highlight-color: #06FFB4;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(11, 0, 20, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(131, 56, 236, 0.3);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--highlight-color);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(6, 255, 180, 0.7);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--highlight-color);
            text-shadow: 0 0 5px rgba(6, 255, 180, 0.7);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Privacy Policy Content */
        .privacy-content {
            padding: 120px 0 50px;
            background-color: var(--bg-color);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .privacy-content::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(131, 56, 236, 0.1) 0%, rgba(131, 56, 236, 0) 70%);
            border-radius: 50%;
            z-index: 1;
        }
        
        .page-title {
            font-size: 3rem;
            margin-bottom: 30px;
            color: var(--text-color);
            position: relative;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }
        
        .privacy-section {
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }
        
        .privacy-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--text-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .privacy-section h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--text-color);
        }
        
        .privacy-section p {
            margin-bottom: 20px;
            color: var(--text-color);
            opacity: 0.9;
        }
        
        .privacy-section ul {
            margin-left: 25px;
            margin-bottom: 20px;
            color: var(--text-color);
            opacity: 0.9;
        }
        
        .privacy-section li {
            margin-bottom: 12px;
        }
        
        /* Footer */
        footer {
            background-color: var(--bg-color);
            padding: 50px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, rgba(58, 134, 255, 0) 70%);
            border-radius: 50%;
            z-index: 1;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--highlight-color);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(6, 255, 180, 0.7);
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
        }
        
        .footer-column {
            margin-right: 50px;
            margin-bottom: 20px;
        }
        
        .footer-column h4 {
            color: var(--text-color);
            margin-bottom: 15px;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: var(--text-color);
            opacity: 0.8;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--highlight-color);
            opacity: 1;
            text-shadow: 0 0 5px rgba(6, 255, 180, 0.7);
        }
        
        .footer-contact {
            margin-top: 20px;
        }
        
        .footer-contact p {
            color: var(--text-color);
            opacity: 0.8;
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(131, 56, 236, 0.3);
            color: var(--text-color);
            opacity: 0.7;
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(11, 0, 20, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 10px 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);
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .privacy-section h2 {
                font-size: 1.5rem;
            }
            
            .privacy-section h3 {
                font-size: 1.2rem;
            }
        }

