:root {
            --primary: #FF5E7D;
            --secondary: #47CF73;
            --accent: #2E86DE;
            --dark: #272727;
            --light: #F9F9F9;
            --retro-blue: #00C1D4;
            --retro-pink: #FF2E63;
            --retro-yellow: #FFD166;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            background-image: linear-gradient(to bottom, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.9)), url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(39, 39, 39, 0.95);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 3px solid var(--retro-blue);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--retro-blue);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--retro-pink);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            font-size: 1.1rem;
        }

        nav ul li a:hover {
            color: var(--retro-blue);
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        .privacy-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--retro-blue);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: var(--retro-pink);
        }

        .privacy-content h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--retro-yellow);
        }

        .privacy-content p, .privacy-content ul {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .privacy-content ul {
            padding-left: 2rem;
        }

        .privacy-content ul li {
            margin-bottom: 0.5rem;
        }

        .disclaimer {
            background-color: rgba(0, 0, 0, 0.7);
            padding: 1.5rem;
            margin-top: 3rem;
            border-top: 1px solid var(--retro-pink);
            font-size: 0.9rem;
        }

        footer {
            background-color: var(--dark);
            padding: 3rem 2rem;
            border-top: 3px solid var(--retro-blue);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--retro-blue);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--retro-pink);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            border-top: 3px solid var(--retro-pink);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
        }

        .btn {
            display: inline-block;
            background-color: var(--retro-pink);
            color: var(--light);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .btn:hover {
            background-color: var(--retro-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease-in-out;
                z-index: 999;
                border-bottom: 3px solid var(--retro-pink);
            }

            nav ul.show {
                transform: translateY(0);
            }

            nav ul li {
                margin: 1rem 0;
            }

            .burger {
                display: block;
            }

            .burger.toggle .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.toggle .line2 {
                opacity: 0;
            }

            .burger.toggle .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .section-title {
                font-size: 2rem;
            }
        }

