/* Киберпанк стили */
        :root {
            --primary-color: #ff00ff;
            --secondary-color: #00ffff;
            --dark-bg: #0a0a14;
            --darker-bg: #050510;
            --light-text: #e0e0ff;
            --dark-text: #a0a0c0;
            --accent-color: #ff00aa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--darker-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 10, 20, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--primary-color);
        }
        
        .logo:hover {
            color: var(--secondary-color);
            text-shadow: 0 0 15px var(--secondary-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--secondary-color);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Burger Menu */
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light-text);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            margin-top: 80px;
            padding: 50px 0;
        }
        
        .page-title {
            font-size: 40px;
            margin-bottom: 30px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .terms-content {
            background-color: rgba(10, 10, 20, 0.7);
            border: 1px solid var(--primary-color);
            border-radius: 5px;
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .terms-content h2 {
            font-size: 24px;
            margin: 30px 0 15px;
            color: var(--secondary-color);
        }
        
        .terms-content h2:first-child {
            margin-top: 0;
        }
        
        .terms-content p {
            margin-bottom: 15px;
            color: var(--light-text);
        }
        
        .terms-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .terms-content li {
            margin-bottom: 10px;
            color: var(--light-text);
        }
        
        /* Footer */
        footer {
            background-color: var(--darker-bg);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-color);
        }
        
        .footer-contacts p {
            margin-bottom: 10px;
            color: var(--light-text);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--dark-text);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--darker-bg);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transform: translateX(-100%);
                transition: transform 0.5s ease;
            }
            
            nav ul.active {
                transform: translateX(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
                z-index: 1001;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .page-title {
                font-size: 30px;
            }
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.95);
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #ff006e;
            box-shadow: 0 4px 20px rgba(255, 0, 110, 0.3);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #00f5ff;
            text-decoration: none;
            text-shadow: 0 0 10px #00f5ff;
            letter-spacing: 2px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #ff006e;
            text-shadow: 0 0 8px #ff006e;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff006e, #00f5ff);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: #00f5ff;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Main Content */
        main {
            padding: 100px 0 50px;
            background: linear-gradient(180deg, #0a0a0a 0%, #16213e 100%);
            min-height: 100vh;
        }
        
        .page-header {
            text-align: center;
            padding: 50px 0;
            background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/10.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ff006e, #00f5ff, #8338ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 1;
        }
        
        .page-header p {
            font-size: 1.2rem;
            color: #b4b4b4;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 245, 255, 0.3);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 245, 255, 0.1);
        }
        
        .content-section h2 {
            color: #00f5ff;
            font-size: 1.8rem;
            margin-bottom: 20px;
            position: relative;
            padding-left: 15px;
        }
        
        .content-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 30px;
            background: linear-gradient(180deg, #ff006e, #00f5ff);
            border-radius: 3px;
        }
        
        .content-section p {
            margin-bottom: 15px;
            color: #b4b4b4;
        }
        
        .content-section ul {
            list-style: none;
            margin: 20px 0;
        }
        
        .content-section ul li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            color: #b4b4b4;
        }
        
        .content-section ul li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #ff006e;
        }
        
        /* Footer */
        footer {
            background: #0a0a0a;
            padding: 50px 0 20px;
            border-top: 1px solid #ff006e;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            color: #00f5ff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: #b4b4b4;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: #ff006e;
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b4b4b4;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-100%);
                transition: transform 0.3s ease;
                border-bottom: 1px solid #ff006e;
            }
            
            .nav-links.active {
                transform: translateY(0);
                top: 70px;
            }
            
            .burger {
                display: flex;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
        }

