:root {
            --primary-color: #00FFFF;
            --secondary-color: #FF00FF;
            --tertiary-color: #8A2BE2;
            --background-color: #1a1a1a;
            --text-color: #FFFFFF;
            --font-family: 'Press Start 2P', cursive;
        }

        @font-face {
            font-family: 'Press Start 2P';
            src: url('https://fonts.gstatic.com/s/pressstart2p/v14/87gXNl-BfO1_b12jU9fJvD_v1uU-N0k6v0Y.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease-in-out;
            border-bottom: 2px solid var(--primary-color);
            font-family: var(--font-family);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-size: 24px;
            text-decoration: none;
            color: var(--primary-color);
            text-shadow: 2px 2px var(--secondary-color);
            transition: color 0.3s ease;
        }

        .logo a:hover {
            color: var(--secondary-color);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-color);
            font-size: 16px;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--primary-color);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            display: block;
            margin-top: 5px;
            right: 0;
            background: var(--primary-color);
            transition: width 0.4s ease;
        }

        nav a:hover::after {
            width: 100%;
            left: 0;
            background: var(--primary-color);
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
        }

        .burger-menu.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.open span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }

            nav.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(26, 26, 26, 0.95);
                backdrop-filter: blur(10px);
                padding: 20px 0;
                border-top: 2px solid var(--primary-color);
            }

            nav.active ul {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            nav.active a {
                font-size: 20px;
            }

            .burger-menu {
                display: flex;
            }
        }

        .content {
            padding: 120px 0;
        }
        
        h1 {
            font-family: var(--font-family);
            font-size: 48px;
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-color);
            text-shadow: 2px 2px var(--secondary-color);
        }
        
        h2 {
            font-family: var(--font-family);
            font-size: 28px;
            margin-top: 40px;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        p, ul {
            margin-bottom: 20px;
        }

        ul {
            padding-left: 40px;
        }
        
        footer {
            background: #111;
            color: #999;
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid var(--tertiary-color);
        }

        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logo {
            font-family: var(--font-family);
            font-size: 24px;
            color: var(--primary-color);
            text-shadow: 2px 2px var(--secondary-color);
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-contacts p {
            margin-bottom: 10px;
        }

        .disclaimer {
            text-align: center;
            font-size: 12px;
            color: #555;
            padding: 20px;
            border-top: 1px solid #333;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 24px;
            }
            .footer .container {
                flex-direction: column;
            }
        }

