:root {
            --primary: #7b2cbf;
            --secondary: #9d4edd;
            --accent: #c77dff;
            --background: #0a0014;
            --surface: #1a0026;
            --card-bg: rgba(26, 0, 38, 0.8);
            --text: #e0aaff;
            --text-secondary: #c8a8e9;
            --text-muted: #9d88b8;
            --success: #06ffa5;
            --warning: #ffb300;
            --error: #ff3860;
            --border: rgba(157, 78, 221, 0.2);
            --glow: rgba(157, 78, 221, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, var(--background) 0%, #1a0033 50%, var(--background) 100%);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Animated background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(199, 125, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(123, 44, 191, 0.05) 0%, transparent 50%);
            z-index: -1;
            animation: backgroundPulse 20s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 0, 20, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .logo:hover {
            color: var(--accent);
            text-shadow: 0 0 20px var(--glow);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Main Content */
        .privacy-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 120px 2rem 4rem;
        }

        .privacy-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .privacy-header h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            position: relative;
        }

        .privacy-header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .last-updated {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 3rem;
            text-align: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .last-updated i {
            color: var(--accent);
            margin-right: 0.5rem;
        }

        /* Content sections */
        .privacy-content {
            display: grid;
            gap: 2rem;
        }

        .section {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .section:hover::before {
            transform: scaleX(1);
        }

        .section:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
            box-shadow: 0 20px 60px rgba(157, 78, 221, 0.2);
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .section-header i {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(157, 78, 221, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .section:hover .section-header i {
            background: var(--secondary);
            color: white;
            transform: scale(1.1);
        }

        .section-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }

        .section h3 {
            color: var(--accent);
            font-size: 1.2rem;
            margin: 2rem 0 1rem;
            font-weight: 600;
        }

        .section p {
            color: var(--text-secondary);
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }

        .section ul {
            color: var(--text-secondary);
            margin: 1rem 0 1.5rem 0;
            padding-left: 0;
            list-style: none;
        }

        .section li {
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
            line-height: 1.6;
        }

        .section li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6rem;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent);
        }

        .section strong {
            color: var(--text);
            font-weight: 600;
        }

        /* Contact section styling */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .contact-item {
            background: rgba(157, 78, 221, 0.05);
            border: 1px solid rgba(157, 78, 221, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(157, 78, 221, 0.1);
            border-color: var(--secondary);
            transform: translateY(-2px);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

        .contact-item span {
            display: block;
            color: var(--text);
            font-weight: 500;
        }

        /* Quick navigation */
        .quick-nav {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 1rem 0.5rem;
            backdrop-filter: blur(10px);
            z-index: 100;
        }

        .quick-nav a {
            display: block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--border);
            margin: 0.8rem 0;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .quick-nav a:hover,
        .quick-nav a.active {
            background: var(--secondary);
            transform: scale(1.3);
            box-shadow: 0 0 15px var(--glow);
        }

        /* Footer */
        .footer {
            margin-top: 6rem;
            padding: 3rem 0;
            text-align: center;
            border-top: 1px solid var(--border);
            background: rgba(10, 0, 20, 0.5);
        }

        .footer p {
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .privacy-container {
                padding: 100px 1rem 2rem;
            }

            .section {
                padding: 2rem 1.5rem;
            }

            .quick-nav {
                display: none;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section {
            animation: fadeInUp 0.6s ease forwards;
        }

        .section:nth-child(1) { animation-delay: 0.1s; }
        .section:nth-child(2) { animation-delay: 0.2s; }
        .section:nth-child(3) { animation-delay: 0.3s; }
        .section:nth-child(4) { animation-delay: 0.4s; }
        .section:nth-child(5) { animation-delay: 0.5s; }
        .section:nth-child(6) { animation-delay: 0.6s; }
        .section:nth-child(7) { animation-delay: 0.7s; }
        .section:nth-child(8) { animation-delay: 0.8s; }
        .section:nth-child(9) { animation-delay: 0.9s; }
        .section:nth-child(10) { animation-delay: 1.0s; }
        .section:nth-child(11) { animation-delay: 1.1s; }