@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400&display=swap');

        :root {
            --color-primary: #f25f4c;
            --color-secondary: #ff9a8b;
            --color-tertiary: #50e3c2;
            --color-background: #1a1a2e;
            --color-text-light: #e0e0e0;
            --color-text-dark: #333332;
            --color-accent-purple: #9d4edd;
            --color-accent-cyan: #00bcd4;
            --color-overlay: rgba(0, 0, 0, 0.7);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--color-background);
            color: var(--color-text-light);
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            color: var(--color-tertiary);
            text-shadow: 2px 2px 4px var(--color-accent-purple);
        }

        a {
            color: var(--color-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-primary);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--color-primary);
            color: var(--color-background);
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .btn:hover {
            background-color: var(--color-secondary);
            transform: scale(1.05);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: var(--color-tertiary);
            text-shadow: 2px 2px 4px var(--color-accent-purple);
        }

        .main-nav {
            display: flex;
            gap: 25px;
        }

        .main-nav a {
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            text-transform: uppercase;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--color-text-light);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .main-nav.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--color-background);
            width: 100%;
            padding: 20px 0;
            border-top: 1px solid var(--color-tertiary);
            transform: translateY(-100%);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .main-nav.active.open {
            transform: translateY(0);
            opacity: 1;
        }

        .main-nav.active a {
            text-align: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        main {
            padding-top: 100px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--color-tertiary);
            margin: 15px auto 0;
        }

        .policy-content h2 {
            margin-top: 40px;
            margin-bottom: 20px;
        }
        
        .policy-content ol {
            list-style: decimal;
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .policy-content ol li {
            margin-bottom: 10px;
        }

        .disclaimer {
            text-align: center;
            padding: 20px 0;
            font-size: 0.8rem;
            color: rgba(224, 224, 224, 0.7);
        }
        
        .disclaimer a {
            color: rgba(224, 224, 224, 0.7);
        }
        
        .disclaimer a:hover {
            color: var(--color-tertiary);
        }

        footer {
            background-color: var(--color-overlay);
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid var(--color-accent-purple);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-links, .footer-contacts {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-links a, .footer-contacts p {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .copyright {
            margin-top: 20px;
            font-size: 0.8rem;
            color: rgba(224, 224, 224, 0.7);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--color-overlay);
            border: 2px solid var(--color-tertiary);
            padding: 20px;
            border-radius: 10px;
            max-width: 400px;
            z-index: 1001;
            box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
            display: none;
        }

        .cookie-banner p {
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .cookie-banner .btn {
            background-color: var(--color-tertiary);
        }
        
        .cookie-banner .btn:hover {
            background-color: var(--color-secondary);
        }

        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }
            .burger {
                display: flex;
            }
            .section-title {
                font-size: 2rem;
            }
            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-links, .footer-contacts {
                align-items: center;
            }
        }

