/* CSS стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0a0a1a;
            color: #ffffff;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 26, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FF1493;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(45deg, #FF1493, #C0C0C0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #FF1493;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #ffffff;
            transition: all 0.3s ease-in-out;
        }
        
        /* Main Content */
        main {
            padding: 120px 0 50px;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-title h1 {
            font-size: 40px;
            margin-bottom: 15px;
            color: #FF1493;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .page-title p {
            font-size: 18px;
            color: #C0C0C0;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .terms-content {
            background-color: #0f0f2a;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section:last-child {
            margin-bottom: 0;
        }
        
        .terms-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #C0C0C0;
            border-bottom: 1px solid rgba(255, 20, 147, 0.3);
            padding-bottom: 10px;
        }
        
        .terms-section h3 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: #FF1493;
        }
        
        .terms-section p {
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .terms-section ul {
            list-style-type: none;
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .terms-section li {
            font-size: 16px;
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        .terms-section li:before {
            content: "•";
            color: #FF1493;
            position: absolute;
            left: 0;
        }
        
        /* Footer */
        footer {
            background-color: #0a0a1a;
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #FF1493;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #FF1493;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            font-size: 16px;
            color: #ffffff;
        }
        
        .contact-info i {
            color: #FF1493;
            margin-right: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: rgba(10, 10, 26, 0.9);
            padding: 20px;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease-out;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cookie-text {
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-text p {
            font-size: 16px;
            line-height: 1.6;
            color: #ffffff;
            margin-bottom: 0;
        }
        
        .cookie-text a {
            color: #FF1493;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .cookie-accept {
            background-color: #FF1493;
            color: #ffffff;
        }
        
        .cookie-accept:hover {
            background-color: #e01380;
        }
        
        .cookie-reject {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #ffffff;
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: rgba(10, 10, 26, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.3s ease-out;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .nav-menu a {
                font-size: 20px;
            }
            
            .burger {
                display: block;
                z-index: 1001;
            }
            
            .burger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .burger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .page-title h1 {
                font-size: 30px;
            }
            
            .terms-content {
                padding: 25px;
            }
            
            .terms-section h2 {
                font-size: 24px;
            }
            
            .terms-section h3 {
                font-size: 20px;
            }
            
            .cookie-content {
                flex-direction: column;
            }
            
            .cookie-text {
                padding-right: 0;
                margin-bottom: 20px;
            }
        }

