:root {
            --neon-pink: #ff2a6d;
            --cyber-teal: #05d9e8;
            --dark-purple: #2e2157;
            --matrix-green: #0f0;
            --deep-space: #0d0221;
            --electric-blue: #00f7ff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--deep-space);
            color: white;
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
            box-shadow: 0 0 15px var(--neon-pink);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            color: var(--neon-pink);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 10px var(--neon-pink);
            letter-spacing: 2px;
        }
        
        .logo span {
            color: var(--cyber-teal);
            text-shadow: 0 0 10px var(--cyber-teal);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--cyber-teal);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            color: var(--cyber-teal);
            margin-bottom: 20px;
            text-shadow: 0 0 10px var(--cyber-teal);
        }
        
        h1 {
            font-size: 48px;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 36px;
            border-bottom: 2px solid var(--neon-pink);
            padding-bottom: 10px;
            display: inline-block;
        }
        
        h3 {
            font-size: 24px;
            color: var(--neon-pink);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .privacy-policy {
            background-color: rgba(46, 33, 87, 0.3);
            border-radius: 20px;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .privacy-policy::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
            opacity: 0.1;
            z-index: -1;
        }
        
        .last-updated {
            color: var(--matrix-green);
            margin-bottom: 40px;
        }
        
        .data-types {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .data-type {
            background-color: rgba(255, 42, 109, 0.1);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--neon-pink);
        }
        
        footer {
            background-color: var(--dark-purple);
            padding: 50px 5%;
            color: white;
            position: relative;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-pink);
            margin-bottom: 20px;
            text-shadow: 0 0 10px var(--neon-pink);
        }
        
        .footer-links h3 {
            color: var(--cyber-teal);
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--neon-pink);
        }
        
        .contact-info p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--cyber-teal);
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-purple);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--cyber-teal);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin-right: 20px;
            flex: 1;
        }
        
        .cookie-btn {
            background-color: var(--neon-pink);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cookie-btn:hover {
            background-color: var(--cyber-teal);
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark-purple);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            
            nav ul.open {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active .line2 {
                opacity: 0;
            }
            
            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .privacy-policy {
                padding: 30px;
            }
            
            .data-types {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 36px;
            }
            
            h2 {
                font-size: 28px;
            }
            
            section {
                padding: 80px 5%;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
        
            .cookie-banner p {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

:root {
            --primary-color: #00FFC2;
            --secondary-color: #1a1a1a;
            --background-color: #0D0D0D;
            --text-color: #E0E0E0;
            --accent-color: #4A4A4A;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--text-color);
        }

        h1, h2, h3 {
            color: var(--primary-color);
            text-align: center;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(13, 13, 13, 0.9);
            padding: 1rem 2rem;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            text-transform: uppercase;
            font-weight: bold;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
        }

        .burger-menu .line {
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s linear;
        }

        main {
            padding-top: 5rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        footer {
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid var(--accent-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .footer-nav a {
            margin: 0 0.5rem;
        }
        
        .disclaimer {
            padding: 2rem;
            background-color: var(--secondary-color);
            text-align: center;
            font-size: 0.8rem;
        }
        
        .privacy-content, .terms-content, .cookie-content {
            background-color: var(--secondary-color);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
        }

        .privacy-content h2, .terms-content h2, .cookie-content h2 {
            text-align: left;
            margin-bottom: 1rem;
        }
        
        .privacy-content p, .terms-content p, .cookie-content p {
            margin-bottom: 1rem;
        }

        .privacy-content ul, .terms-content ul, .cookie-content ul {
            padding-left: 20px;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                right: 0;
                top: 5rem;
                height: calc(100vh - 5rem);
                width: 70%;
                flex-direction: column;
                background-color: rgba(13, 13, 13, 0.95);
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                padding-top: 4rem;
            }

            .nav-menu.active {
                transform: translateX(0);
            }

            .nav-menu li {
                margin: 2rem 0;
                text-align: center;
            }

            .burger-menu {
                display: flex;
            }

            .burger-menu.active .line:nth-child(2) {
                opacity: 0;
            }

            .burger-menu.active .line:nth-child(1) {
                transform: rotate(45deg) translate(5px, 8px);
            }

            .burger-menu.active .line:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -8px);
            }
        }

