@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Bebas+Neue&display=swap');

        :root {
            --primary-color: #f72585;
            --secondary-color: #b5179e;
            --accent-color: #7209b7;
            --background-color: #1a1a1a;
            --text-color: #e0e0e0;
            --card-bg: #2d2d2d;
            --border-color: #4a4a4a;
            --hover-color: #f72585;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            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 {
            background-color: var(--background-color);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background-color: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(5px);
        }

        .navbar {
            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-decoration: none;
            letter-spacing: 2px;
            text-shadow: 2px 2px var(--accent-color);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
            transition: transform 0.3s ease-in-out;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s ease;
        }

        .nav-links 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-links a:hover::after {
            width: 100%;
            left: 0;
            background: var(--primary-color);
        }
        
        .nav-links a:hover {
            color: var(--hover-color);
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        .burger.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger.active .line2 {
            opacity: 0;
        }

        .burger.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 0;
                height: 100vh;
                background-color: var(--background-color);
                flex-direction: column;
                width: 70%;
                transform: translateX(100%);
                padding-top: 5rem;
                align-items: center;
                gap: 2rem;
                z-index: 999;
                border-left: 2px solid var(--border-color);
            }
            .nav-links.nav-active {
                transform: translateX(0);
            }
            .burger {
                display: flex;
            }
        }

        main {
            padding: 120px 0 80px;
        }
        
        .content-section {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .content-section h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .content-section h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .content-section p, .content-section ul {
            margin-bottom: 20px;
        }

        .content-section ul {
            padding-left: 20px;
        }
        
        .content-section li {
            margin-bottom: 10px;
        }

        .content-section a {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        /* Footer */
        .footer {
            background-color: #0d0d0d;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid var(--border-color);
        }

        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            text-align: left;
        }

        .footer-logo {
            flex-basis: 100%;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .footer-logo .logo {
             font-size: 2.5rem;
             color: var(--primary-color);
             text-shadow: 2px 2px var(--accent-color);
        }

        .footer-links, .footer-contacts {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }

        .footer-links h4, .footer-contacts h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--hover-color);
        }

        .footer-contacts p {
            margin-bottom: 10px;
        }

        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
            width: 100%;
        }

