:root {
            --primary-color: #0d0c1d;
            --secondary-color: #FFC107;
            --accent-color: #E91E63;
            --text-color: #f0f0f0;
            --bg-color: #2c3e50;
            --font-family-retro: 'Orbitron', sans-serif;
            --font-family-text: 'Roboto', sans-serif;
        }
        body { margin: 0; font-family: var(--font-family-text); background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }
        h1, h2 { font-family: var(--font-family-retro); color: var(--secondary-color); text-align: center; }
        main { max-width: 900px; margin: 80px auto 4rem; padding: 2rem; background-color: var(--primary-color); border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
        h2 { margin-top: 2rem; border-bottom: 2px solid var(--accent-color); padding-bottom: 0.5rem; }
        p, ul, li { margin-bottom: 1rem; }
        a { color: var(--accent-color); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: var(--secondary-color); }
        header { position: fixed; width: 100%; top: 0; left: 0; background: rgba(13, 12, 29, 0.95); padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; z-index: 1000; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); }
        header .logo { font-family: var(--font-family-retro); font-size: 1.8rem; color: var(--accent-color); text-transform: uppercase; text-decoration: none; letter-spacing: 2px; }
        nav a { color: var(--text-color); text-decoration: none; margin-left: 2rem; font-size: 1rem; transition: color 0.3s ease; }
        nav a:hover { color: var(--secondary-color); }
        footer { background-color: var(--primary-color); color: var(--text-color); padding: 2rem 10%; text-align: center; border-top: 1px solid var(--accent-color); }
        .footer-links a { color: var(--text-color); text-decoration: none; margin: 0 1rem; transition: color 0.3s ease; }
        .footer-links a:hover { color: var(--secondary-color); }
        .disclaimer { background-color: #1a2533; color: #999; padding: 1rem 10%; font-size: 0.8rem; text-align: center; }
        @media (max-width: 768px) { header { padding: 1rem; } nav { display: none; } main { margin: 80px 1rem 4rem; padding: 1rem; } }

