@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto+Mono:wght@400;700&display=swap');

        :root {
            --color-dark: #1a1a1a;
            --color-blue: #00aaff;
            --color-red: #ff4d4d;
            --font-main: 'Montserrat', sans-serif;
            --font-mono: 'Roboto Mono', monospace;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-main);
            color: #ffffff;
            background-color: var(--color-dark);
            line-height: 1.6;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--color-blue);
        }

        .logo {
            font-family: var(--font-mono);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-blue);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--color-blue);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger .bar {
            width: 25px;
            height: 3px;
            background-color: var(--color-blue);
            transition: transform 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(26, 26, 26, 0.95);
                backdrop-filter: blur(10px);
                border-top: 1px solid var(--color-blue);
                padding: 1rem 2rem;
                gap: 1rem;
            }

            .nav-menu.active {
                display: flex;
            }

            .burger {
                display: flex;
            }
        }

        .content {
            max-width: 900px;
            margin: 80px auto 2rem;
            padding: 2rem;
        }

        .content h1 {
            font-size: 2.5rem;
            color: var(--color-blue);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .content h2 {
            font-size: 1.8rem;
            color: var(--color-red);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .content p, .content ul {
            margin-bottom: 1.5rem;
        }

        .content ul {
            padding-left: 2rem;
        }

        .content li {
            margin-bottom: 0.5rem;
            font-family: var(--font-mono);
        }

        footer {
            background-color: #000000;
            padding: 2rem;
            text-align: center;
            border-top: 1px solid var(--color-blue);
            color: #ffffff;
        }

        .footer-content {
            max-width: 1200px;
            margin: auto;
        }
        
        .footer-content ul {
            list-style: none;
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-content a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-content a:hover {
            color: var(--color-blue);
        }
        
        .footer-contacts p {
            margin-bottom: 0.5rem;
            font-family: var(--font-mono);
        }

