:root {
            --primary: #FF5E7D;
            --secondary: #47B8E0;
            --accent: #FFD166;
            --dark: #2D3047;
            --light: #F7F7FF;
            --retro-orange: #FF9A00;
            --retro-blue: #00C4FF;
            --retro-purple: #9D00FF;
        }

        * {
            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: radial-gradient(circle at 10% 20%, rgba(45, 48, 71, 0.9) 0%, rgba(0, 0, 0, 0.9) 90%);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(45, 48, 71, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 2px solid var(--retro-orange);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--retro-orange);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--retro-blue);
        }

        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;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--retro-orange);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--retro-orange);
            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: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        section {
            padding: 4rem 0;
        }

        h1, h2, h3 {
            font-family: 'Arial Black', sans-serif;
            margin-bottom: 1.5rem;
            color: var(--retro-orange);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        h1 {
            font-size: 3rem;
            background: linear-gradient(90deg, var(--retro-orange), var(--retro-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        h2 {
            font-size: 2rem;
            color: var(--retro-blue);
            position: relative;
            display: inline-block;
            margin-top: 2rem;
        }

        h2::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            bottom: -10px;
            left: 0;
            background: linear-gradient(90deg, var(--retro-orange), var(--retro-purple));
            border-radius: 2px;
        }

        h3 {
            font-size: 1.5rem;
            color: var(--retro-purple);
            margin-top: 1.5rem;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        .update-date {
            color: var(--retro-blue);
            font-style: italic;
            margin-bottom: 2rem;
        }

        address {
            font-style: normal;
            margin-bottom: 2rem;
        }

        strong {
            color: var(--retro-orange);
        }

        .privacy {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid var(--retro-blue);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        footer {
            background: rgba(0, 0, 0, 0.7);
            padding: 3rem 2rem;
            margin-top: 3rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--retro-orange);
            margin-bottom: 1rem;
            display: block;
        }

        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--retro-blue);
        }

        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }

        .footer-links ul li {
            margin-bottom: 0.5rem;
        }

        .footer-links ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--retro-orange);
        }

        .contact-info {
            margin-top: 1rem;
        }

        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(45, 48, 71, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }

            nav ul.show {
                transform: translateY(0);
            }

            nav ul li {
                margin: 1rem 0;
            }

            .burger {
                display: block;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .privacy {
                padding: 2rem 1rem;
            }
        }

