@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Oswald:wght@700&display=swap');

        :root {
            --color-primary: #1a1a1a;
            --color-secondary: #333;
            --color-accent: #ff4500;
            --color-text-dark: #eee;
            --color-text-light: #fff;
            --color-button: #ff4500;
            --color-button-hover: #ff6347;
            --color-border: #555;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        html, body {
            background-color: var(--color-primary);
            color: var(--color-text-dark);
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
        }
        
        a {
            color: var(--color-accent);
            text-decoration: none;
        }
        
        a:hover {
            color: var(--color-button-hover);
        }

        h1, h2, h3 {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            color: var(--color-text-light);
            margin-bottom: 20px;
        }
        
        h1 { font-size: 3rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }
        
        section {
            padding: 80px 5%;
        }
        
        .container {
            max-width: 900px;
            margin: auto;
        }
        
        header {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            background-color: rgba(26, 26, 26, 0.9);
            padding: 15px 5%;
            border-bottom: 1px solid var(--color-border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header .logo {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            color: var(--color-accent);
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu li a {
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            color: var(--color-text-dark);
        }

        .nav-menu li a:hover {
            color: var(--color-accent);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--color-text-dark);
            transition: all 0.3s ease;
        }
        
        .policy-content ul {
            list-style: none;
            padding-left: 20px;
            margin-top: 15px;
        }

        .policy-content ul li {
            margin-bottom: 10px;
        }
        
        .policy-content ul li::before {
            content: "🎸";
            margin-right: 10px;
        }
        
        footer {
            background-color: var(--color-primary);
            color: var(--color-text-dark);
            padding: 40px 5%;
            text-align: center;
            border-top: 1px solid var(--color-border);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            text-align: left;
        }
        
        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--color-accent);
        }
        
        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section p {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.8rem; }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--color-primary);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 50px;
                transition: right 0.3s ease;
                border-left: 1px solid var(--color-border);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
            .burger-menu.active span:nth-child(2) { opacity: 0; }
            .burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-section {
                text-align: center;
            }
        }

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Bebas+Neue&display=swap');

        :root {
            --primary-color: #ff00ff;
            --secondary-color: #00ffff;
            --background-color: #1a0033;
            --text-color: #ffffff;
            --accent-color: #ff9900;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Roboto Mono', monospace;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            padding-top: 5rem;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }
        
        h1, h2, h3 {
            font-family: 'Bebas Neue', sans-serif;
            color: var(--primary-color);
            text-transform: uppercase;
        }

        h1 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 2px 2px var(--secondary-color);
        }

        h2 {
            font-size: 2rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
        }

        ul {
            margin-bottom: 1rem;
            padding-left: 2rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-color);
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 0, 51, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: background 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-color);
            text-shadow: 1px 1px var(--secondary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-menu a {
            text-transform: uppercase;
            font-weight: bold;
            position: relative;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-bar {
            width: 30px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }
        
        .footer {
            background-color: var(--background-color);
            padding: 2rem 0;
            text-align: center;
            border-top: 2px solid var(--accent-color);
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }
        
        .footer-nav {
            list-style: none;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-contacts p {
            font-size: 0.9rem;
            margin: 0.25rem 0;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: rgba(26, 0, 51, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease-in-out;
            }

            .nav-menu.active {
                right: 0;
            }
            
            .burger-menu {
                display: flex;
            }

            .burger-menu.active .burger-bar:nth-child(2) {
                opacity: 0;
            }
            
            .burger-menu.active .burger-bar:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }
            
            .burger-menu.active .burger-bar:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }
        }

