:root {
            --primary: #FF5E7D;
            --secondary: #47B8E0;
            --accent: #FFD166;
            --dark: #2D3047;
            --light: #F7F7FF;
            --retro-dark: #1A1A2E;
            --retro-light: #E6E6FA;
            --retro-accent: #FF9F1C;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--retro-dark);
            color: var(--retro-light);
            line-height: 1.6;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(45, 48, 71, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--retro-accent);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--retro-accent);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--retro-light);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: var(--retro-light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--retro-accent);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--retro-light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        section {
            padding: 4rem 0;
        }
        
        h1, h2, h3 {
            color: var(--retro-accent);
            margin-bottom: 1.5rem;
        }
        
        h1 {
            font-size: 3rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        h2 {
            font-size: 2.2rem;
            margin-top: 2rem;
            position: relative;
        }
        
        h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            bottom: -10px;
            left: 0;
            background-color: var(--primary);
        }
        
        p {
            margin-bottom: 1.5rem;
        }
        
        ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        
        th, td {
            border: 1px solid var(--retro-accent);
            padding: 0.8rem;
            text-align: left;
        }
        
        th {
            background-color: var(--dark);
        }
        
        footer {
            background-color: var(--dark);
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }
        
        .footer-column h3 {
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            bottom: -10px;
            left: 0;
            background-color: var(--retro-accent);
        }
        
        .footer-column ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: var(--retro-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--retro-accent);
        }
        
        .copyright {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--retro-accent);
        }
        
        .disclaimer {
            font-size: 0.8rem;
            color: var(--retro-light);
            opacity: 0.7;
            margin-top: 2rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-top: 2px solid var(--retro-accent);
            transform: translateY(100%);
            transition: transform 0.5s;
            z-index: 1000;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin-bottom: 0;
            flex: 1;
            min-width: 250px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--retro-accent);
            color: var(--retro-dark);
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 0;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 5px 5px 0 var(--primary);
            margin-left: 1rem;
        }
        
        .btn:hover {
            background-color: var(--primary);
            box-shadow: 5px 5px 0 var(--retro-accent);
        }
        
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                z-index: 999;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
                width: 100%;
                text-align: center;
            }
            
            nav ul li {
                margin: 0.5rem 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;
            }
            
            table {
                display: block;
                overflow-x: auto;
            }
        }

