* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #ff006e;
            --secondary-color: #8338ec;
            --tertiary-color: #3a86ff;
            --dark-color: #0a0e27;
            --light-color: #f8f9fa;
            --text-color: #ffffff;
        }
        
        body {
            background-color: var(--dark-color);
            color: var(--text-color);
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, rgba(10,14,39,0.9) 0%, rgba(131,56,236,0.9) 100%);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(131, 56, 236, 0.3);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--text-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--tertiary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(131, 56, 236, 0.5);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--tertiary-color);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--tertiary-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        main {
            padding: 50px 0 100px;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .page-title {
            font-size: 40px;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
            width: 100%;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .privacy-content {
            background: rgba(10,14,39,0.7);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(131, 56, 236, 0.2);
            line-height: 1.8;
        }
        
        .privacy-content h2 {
            font-size: 28px;
            margin: 30px 0 15px;
            color: var(--tertiary-color);
        }
        
        .privacy-content h3 {
            font-size: 22px;
            margin: 25px 0 10px;
            color: var(--secondary-color);
        }
        
        .privacy-content p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .privacy-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .privacy-content ul li {
            margin-bottom: 10px;
        }
        
        footer {
            background: linear-gradient(90deg, rgba(10,14,39,0.9) 0%, rgba(131,56,236,0.9) 100%);
            padding: 50px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--tertiary-color);
        }
        
        .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(--tertiary-color);
            padding-left: 5px;
        }
        
        .footer-column p {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(10,14,39,0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                z-index: 999;
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .privacy-content {
                padding: 20px;
            }
        }

