:root {
            --color-primary: #121021;
            --color-secondary: #00E5FF;
            --color-accent: #FF5A90;
            --color-text: #E5E5E5;
            --font-family-header: 'Cyberway Riders', sans-serif;
            --font-family-body: 'Roboto Mono', monospace;
        }

        @font-face {
            font-family: 'Cyberway Riders';
            src: url('https://fonts.cdnfonts.com/s/45413/CyberwayRiders.woff') format('woff');
        }

        @font-face {
            font-family: 'Roboto Mono';
            src: url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family-body);
            background-color: var(--color-primary);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 100px;
        }

        a {
            color: var(--color-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-accent);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(18, 16, 33, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 2px solid var(--color-secondary);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-family-header);
            font-size: 2rem;
            color: var(--color-secondary);
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 2rem;
        }

        .nav-link {
            font-family: var(--font-family-header);
            font-size: 1.1rem;
            text-transform: uppercase;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 25px;
            width: 30px;
        }

        .burger-bar {
            width: 100%;
            height: 3px;
            background-color: var(--color-secondary);
            transition: all 0.3s ease;
        }

        .nav-menu.active {
            transform: translateX(0);
        }
        
        main {
            padding-top: 50px;
            padding-bottom: 50px;
        }
        
        h1, h2, h3 {
            font-family: var(--font-family-header);
            color: var(--color-accent);
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 2.5rem;
            text-align: center;
        }
        
        h2 {
            font-size: 2rem;
            margin-top: 40px;
        }
        
        p {
            margin-bottom: 20px;
        }
        
        ol {
            padding-left: 40px;
            margin-bottom: 20px;
        }
        
        ol li {
            margin-bottom: 10px;
        }
        
        .footer {
            background-color: #0c0a1a;
            padding: 40px 0;
            border-top: 2px solid var(--color-secondary);
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-info {
            font-size: 0.9rem;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(18, 16, 33, 0.95);
            border-top: 2px solid var(--color-accent);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1002;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner a {
            color: var(--color-accent);
        }
        
        .cookie-banner-text {
            flex-grow: 1;
            margin-right: 20px;
        }
        
        .cookie-accept-button {
            padding: 10px 20px;
            background-color: var(--color-accent);
            color: var(--color-primary);
            font-family: var(--font-family-body);
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: 0;
                background: rgba(18, 16, 33, 0.95);
                width: 100%;
                height: calc(100vh - 70px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.5s ease;
            }

            .nav-item {
                margin: 2rem 0;
            }

            .burger-menu {
                display: flex;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .cookie-banner-text {
                margin-right: 0;
            }
        }

