/* CSS from index.html */
        :root {
            --primary-color: #00FFC2;
            --secondary-color: #FF00FF;
            --background-color: #1a1a2e;
            --text-color: #ffffff;
            --accent-color: #ff5733;
            --card-bg: #282a3d;
            --border-color: #4b4d66;
            --button-hover: #00cc99;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Courier New', Courier, monospace;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(26, 26, 46, 0.9);
            padding: 1rem 2rem;
            border-bottom: 2px solid var(--secondary-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a:hover::after {
            transform: scaleX(1);
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 4px;
            transition: all 0.3s ease;
        }
        
        main {
            padding-top: 80px;
        }
        
        .content-section {
            padding: 4rem 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        h1 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-color);
            text-shadow: 1px 1px var(--secondary-color);
        }
        
        h2 {
            font-size: 2rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        p, ul, li {
            margin-bottom: 1rem;
        }
        
        ul {
            padding-left: 2rem;
        }

        .disclaimer {
            padding: 2rem;
            text-align: center;
            background-color: #111;
            border-top: 1px solid var(--secondary-color);
            font-size: 0.8rem;
            color: #ccc;
        }

        footer {
            background-color: #111;
            color: #ccc;
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid var(--secondary-color);
        }

        footer nav a {
            color: #ccc;
            text-decoration: none;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        
        footer nav a:hover {
            color: var(--primary-color);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 1rem;
            text-align: center;
            z-index: 2000;
            display: none;
            backdrop-filter: blur(5px);
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
        }

        .cookie-banner button {
            background: var(--primary-color);
            color: var(--background-color);
            border: none;
            padding: 0.5rem 1rem;
            margin-left: 1rem;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--background-color);
                border-top: 2px solid var(--secondary-color);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 0;
                text-align: center;
                padding: 1rem 0;
                border-bottom: 1px solid var(--border-color);
            }
            
            .burger-menu {
                display: flex;
            }
            
            h1 {
                font-size: 2.5rem;
            }
        }

