@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: #0d0126;
            --text-color: #ffffff;
            --accent-color: #ffff00;
            --card-bg: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto Mono', monospace;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background: rgba(13, 1, 38, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--primary-color);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--accent-color);
            text-shadow: 2px 2px var(--secondary-color);
        }

        .logo a {
            text-decoration: none;
            color: inherit;
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: bold;
            font-size: 1.1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        nav ul a:hover {
            color: var(--primary-color);
        }

        nav ul 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 ul a:hover::after {
            transform: scaleX(1);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            z-index: 1001;
        }

        .burger-menu div {
            width: 100%;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        .main-content {
            padding-top: 100px;
        }
        
        .static-page {
            padding: 50px 0;
            background-color: var(--card-bg);
            margin-top: 50px;
        }
        
        .static-page h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 30px;
            color: var(--primary-color);
        }

        .static-page h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            margin-top: 40px;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .static-page p, .static-page ul {
            margin-bottom: 20px;
        }

        .static-page ul {
            padding-left: 20px;
            list-style-type: '⚡ ';
        }
        
        .static-page li {
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background-color: var(--background-color);
            padding: 50px 0 20px;
            border-top: 2px solid var(--primary-color);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-links {
            margin: 20px 0;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            margin: 0 15px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .footer-links a::after {
            content: '|';
            position: absolute;
            right: -10px;
            color: var(--text-color);
        }

        .footer-links a:last-child::after {
            content: '';
        }

        .footer-contacts {
            margin-top: 20px;
        }

        .footer-contacts p {
            margin: 5px 0;
        }

        .copyright {
            margin-top: 30px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .disclaimer {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px dashed var(--secondary-color);
            margin-top: 50px;
        }

        .disclaimer p {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .static-page h1 {
                font-size: 2.5rem;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 70%;
                background-color: rgba(13, 1, 38, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
            }

            nav.active {
                transform: translateX(0);
            }

            nav ul {
                flex-direction: column;
                text-align: center;
            }

            nav ul li {
                margin: 20px 0;
            }

            .burger-menu {
                display: flex;
            }

            .burger-menu.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger-menu.active .line2 {
                opacity: 0;
            }

            .burger-menu.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

