:root {
            --primary: #6e00ff;
            --secondary: #00ff9d;
            --dark: #0a0a0a;
            --light: #f0f0f0;
            --accent: #ff00aa;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--primary);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            text-shadow: 0 0 5px var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 1.5rem;
        }
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: var(--secondary);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s;
        }
        main {
            margin-top: 80px;
            padding: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--secondary);
            text-align: center;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--secondary);
        }
        p, ul {
            margin-bottom: 1rem;
        }
        ul {
            padding-left: 2rem;
        }
        footer {
            background-color: rgba(10, 10, 10, 0.9);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid var(--primary);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: var(--light);
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .footer-contacts {
            margin-bottom: 2rem;
        }
        .disclaimer {
            font-size: 0.8rem;
            opacity: 0.7;
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(10, 10, 10, 0.9);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s;
            }
            nav ul.active {
                right: 0;
            }
            nav ul li {
                margin: 1.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);
            }
        }

