/* Mismo CSS que en index.html */
        :root {
            --neon-pink: #ff2a6d;
            --neon-blue: #05d9e8;
            --dark-bg: #0d0221;
            --text-light: #d1f7ff;
            --accent-purple: #9d00ff;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            border-bottom: 1px solid var(--neon-pink);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--neon-pink);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background: var(--neon-blue);
            margin: 5px;
            transition: all 0.3s;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 50%;
                height: calc(100vh - 80px);
                background: rgba(13, 2, 33, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s;
            }
            .nav-links.active {
                right: 0;
            }
            .burger {
                display: block;
            }
        }
        .privacy-content {
            max-width: 800px;
            margin: 100px auto 50px;
            padding: 2rem;
            background: rgba(13, 2, 33, 0.8);
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--neon-pink);
            text-align: center;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--neon-blue);
        }
        p, li {
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        ul {
            padding-left: 2rem;
        }
        footer {
            background: rgba(9, 0, 26, 0.9);
            padding: 3rem 2rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--neon-pink);
        }
        .contact-info {
            margin-bottom: 2rem;
        }
        .contact-info p {
            margin: 0.5rem 0;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.7;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(13, 2, 33, 0.9);
            padding: 1rem;
            border-top: 1px solid var(--neon-blue);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 999;
        }
        .cookie-banner p {
            margin-right: 1rem;
        }
        .cookie-btn {
            background: var(--neon-pink);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
        }

