:root {
            --color-primary: #820875;
            --color-secondary: #ff33c3;
            --color-accent: #e5f400;
            --color-background: #0d010c;
            --color-text: #fff;
            --font-main: 'Arial', sans-serif;
            --font-retro: 'Courier New', monospace;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--color-background);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: var(--font-retro);
            color: var(--color-accent);
            text-shadow: 2px 2px var(--color-primary);
        }

        header {
            background-color: rgba(13, 1, 12, 0.8);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 5%;
            top: 0;
            left: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--color-secondary);
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .nav-menu a {
            color: var(--color-text);
            text-decoration: none;
            font-size: 1rem;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--color-secondary);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1010;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--color-text);
            transition: all 0.3s ease;
        }

        .burger-menu.open .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
        .burger-menu.open .bar2 { opacity: 0; }
        .burger-menu.open .bar3 { transform: rotate(45deg) translate(-5px, -6px); }

        .mobile-nav {
            display: none;
            flex-direction: column;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 1, 12, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1005;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .mobile-nav.open {
            transform: translateX(0);
        }

        .mobile-nav a {
            color: var(--color-text);
            font-size: 1.5rem;
            text-transform: uppercase;
            text-decoration: none;
            transition: color 0.3s;
        }

        .mobile-nav a:hover {
            color: var(--color-secondary);
        }

        main {
            padding-top: 80px;
            min-height: 80vh;
        }

        .policy-section {
            padding: 4rem 5%;
            max-width: 900px;
            margin: auto;
            animation: fadeIn 1s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .policy-section h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .policy-section h2 {
            font-size: 1.8rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .policy-section p, .policy-section ul {
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .policy-section ul {
            padding-left: 2rem;
        }

        .policy-section ul li {
            margin-bottom: 0.5rem;
        }

        .policy-section a {
            color: var(--color-secondary);
            text-decoration: underline;
        }
        
        footer {
            background-color: var(--color-primary);
            padding: 3rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
        }

        footer .footer-section {
            flex: 1;
            min-width: 250px;
        }

        footer .footer-section h4 {
            color: var(--color-accent);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        footer .footer-section ul {
            list-style: none;
        }

        footer .footer-section ul li a {
            color: var(--color-text);
            text-decoration: none;
            transition: color 0.3s;
        }

        footer .footer-section ul li a:hover {
            color: var(--color-secondary);
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .burger-menu {
                display: flex;
            }

            footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

