@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@400;700&display=swap');

        :root {
            --primary-color: #00e5ff;
            --secondary-color: #ff00ff;
            --accent-color: #ffea00;
            --dark-bg: #1a0033;
            --light-text: #e0e0e0;
            --header-height: 80px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background-color: rgba(26, 0, 51, 0.95);
            border-bottom: 2px solid var(--secondary-color);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2em;
            color: var(--primary-color);
            text-shadow: 0 0 10px var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: var(--accent-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 700;
            padding: 10px 20px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
            left: 0;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1100;
        }
        
        .hamburger span {
            height: 3px;
            width: 25px;
            background-color: var(--primary-color);
            margin-bottom: 4px;
            transition: all 0.3s ease-in-out;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100%;
                background-color: rgba(26, 0, 51, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: all 0.5s ease-in-out;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu a {
                font-size: 1.5em;
                margin: 20px 0;
            }
            
            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }
        
        main {
            padding-top: var(--header-height);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
        }
        
        h1 {
            font-size: 3em;
            text-align: center;
        }
        
        h2 {
            font-size: 2em;
            margin-top: 40px;
        }
        
        p, li {
            margin-bottom: 15px;
        }
        
        ul {
            margin-left: 20px;
        }
        
        a {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        
        a:hover {
            color: var(--accent-color);
        }

        /* Cookie banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #2b0057;
            color: var(--light-text);
            padding: 20px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            z-index: 1500;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }
        
        .cookie-banner.visible {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin: 0;
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .cookie-banner button {
            background-color: var(--primary-color);
            color: var(--dark-bg);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .cookie-banner button:hover {
            background-color: var(--accent-color);
        }

        /* Footer */
        footer {
            background-color: #1a0033;
            border-top: 2px solid var(--secondary-color);
            padding: 40px 5%;
            text-align: center;
        }
        
        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            text-align: left;
        }

        .footer-section h4 {
            color: var(--primary-color);
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 15px;
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--primary-color);
        }

        .footer-contacts p {
            margin: 5px 0;
        }

        .footer-logo {
            text-align: center;
            flex: 1;
        }
        
        .footer-logo a {
            font-size: 2.5em;
            margin: 0;
        }

        .copyright {
            margin-top: 30px;
            font-size: 0.9em;
            color: #999;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }
            .footer-section {
                text-align: center;
                width: 100%;
            }
            .footer-logo a {
                font-size: 2em;
            }
            .cookie-banner {
                flex-direction: column;
                padding: 10px;
            }
        }

