@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Bebas+Neue&display=swap');

        :root {
            --primary-color: #000;
            --secondary-color: #E2E2E2;
            --accent-color: #FF5722;
            --text-color: #E2E2E2;
            --bg-color: #121212;
            --font-family-body: 'Roboto', sans-serif;
            --font-family-heading: 'Bebas Neue', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-family-body);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-family-heading);
            font-size: 2rem;
            color: var(--accent-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--accent-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }

        h1, h2 {
            font-family: var(--font-family-heading);
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 3rem;
            text-align: center;
        }

        h2 {
            margin-top: 30px;
            font-size: 2rem;
        }

        p {
            margin-bottom: 15px;
        }

        ol, ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        li {
            margin-bottom: 5px;
        }
        
        .disclaimer {
            background-color: var(--primary-color);
            padding: 20px;
            font-size: 0.9rem;
            text-align: center;
            color: var(--secondary-color);
        }
        
        footer {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 40px 0;
            text-align: center;
        }
        
        footer .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        footer .footer-content .logo {
            color: var(--secondary-color);
        }

        footer .footer-links a, footer .footer-contacts a {
            color: var(--secondary-color);
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        footer .footer-links a:hover, footer .footer-contacts a:hover {
            color: var(--accent-color);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.9);
            color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            max-width: 500px;
            display: none;
            z-index: 1001;
            text-align: center;
        }
        
        .cookie-banner p {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .cookie-banner button {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .cookie-banner button:hover {
            background-color: var(--secondary-color);
        }
        
        @media (max-width: 768px) {
            .burger-menu {
                display: flex;
            }

            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                transform: translateX(-100%);
                transition: transform 0.5s ease;
            }
            
            nav.active {
                transform: translateX(0);
            }

            nav ul {
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
            }

            nav ul li {
                margin: 15px 0;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
        }

