
        
        :root {
            --primary: #2a5ee6;
            --primary-dark: #1a4bc4;
            --white: #ffffff;
            --black: #121212;
            --silver: rgba(192, 192, 192, 0.9);
            --gray-100: #f5f7fa;
            --gray-200: #e4e7eb;
            --gray-500: #64748b;
            --gray-700: #334155;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --border-radius: 8px;

            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --text-light: #fff;
            --payment-purple: #9b59b6;
        }
       
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--black);
            background-color: var(--white);
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
       /* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--silver);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    backdrop-filter: blur(5px);
}

.header.scrolled {
    padding: 1rem 0;
    background-color: rgba(192, 192, 192, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    margin-right: 15px;
}

.header.scrolled .logo-img {
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    transition: var(--transition);
}

.header.scrolled .logo-text {
    font-size: 1.3rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--silver);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: var(--transition);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
}

.mobile-menu-logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.mobile-menu-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    flex: 1;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

 /* Responsive Styles */
 @media (max-width: 992px) {
    .nav-links li {
        margin-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .header.scrolled .logo-img {
        height: 35px;
    }

    .header.scrolled .logo-text {
        font-size: 1.1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-about {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .logo-text {
        display: none;
    }
}




/* Стили для модального окна согласия */
        .consent-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            animation: fadeIn 0.3s ease-in-out;
        }

        .consent-modal-content {
            background-color: #fff;
            margin: 5% auto;
            padding: 0;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: slideIn 0.3s ease-in-out;
            position: relative;
        }

        .consent-modal-header {
            padding: 25px 25px 15px;
            border-bottom: 1px solid #eaeaea;
            text-align: center;
        }

        .consent-modal-header h2 {
            margin: 0;
            font-size: 1.4rem;
            color: #2c3e50;
            font-weight: 600;
        }

        .consent-modal-body {
            padding: 20px 25px;
            max-height: 60vh;
            overflow-y: auto;
        }

        .consent-modal-body p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #555;
            font-size: 14px;
        }

        .consent-modal-body a {
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
        }

        .consent-modal-body a:hover {
            text-decoration: underline;
        }

        .consent-checkbox {
            margin: 20px 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .consent-checkbox input[type="checkbox"] {
            margin-top: 3px;
            transform: scale(1.2);
        }

        .consent-checkbox label {
            font-size: 14px;
            line-height: 1.4;
            color: #555;
            cursor: pointer;
        }

        .consent-modal-footer {
            padding: 20px 25px;
            border-top: 1px solid #eaeaea;
            display: flex;
            gap: 12px;
            justify-content: flex-end;
        }

        .consent-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            min-width: 100px;
        }

        .consent-btn-reject {
            background-color: #95a5a6;
            color: white;
        }

        .consent-btn-reject:hover {
            background-color: #7f8c8d;
        }

        .consent-btn-accept {
            background-color: #3498db;
            color: white;
        }

        .consent-btn-accept:hover:not(:disabled) {
            background-color: #2980b9;
        }

        .consent-btn-accept:disabled {
            background-color: #bdc3c7;
            cursor: not-allowed;
        }

        /* Стили для сообщения о перенаправлении */
        .redirect-message {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 6px;
            padding: 15px 20px;
            z-index: 10000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            animation: slideDown 0.3s ease-out;
            text-align: center;
            max-width: 400px;
            width: 90%;
        }

        .redirect-message p {
            margin: 0 0 15px 0;
            color: #856404;
            font-size: 14px;
            line-height: 1.4;
        }

        .redirect-countdown {
            font-weight: bold;
            color: #e74c3c;
        }

        .redirect-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .redirect-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
            min-width: 80px;
        }

        .redirect-btn-now {
            background-color: #dc3545;
            color: white;
        }

        .redirect-btn-now:hover {
            background-color: #c82333;
        }

        .redirect-btn-cancel {
            background-color: #6c757d;
            color: white;
        }

        .redirect-btn-cancel:hover {
            background-color: #545b62;
        }

        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateY(-50px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideDown {
            from { 
                opacity: 0;
                transform: translateX(-50%) translateY(-20px);
            }
            to { 
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .consent-modal-content {
                margin: 10% auto;
                width: 95%;
            }
            
            .consent-modal-footer {
                flex-direction: column;
            }
            
            .consent-btn {
                width: 100%;
            }

            .redirect-message {
                top: 10px;
                width: 95%;
            }

            .redirect-buttons {
                flex-direction: column;
            }

            .redirect-btn {
                width: 100%;
            }
        }

        /* Блокировка скролла при открытом модальном окне */
        body.consent-modal-open {
            overflow: hidden;
        }











        
        /* Основное содержимое */
        .main {
            padding: 8rem 0 4rem;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--payment-purple));
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        .subscriber-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .subscriber-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .subscriber-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .card-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .card-title i {
            margin-right: 1rem;
            color: var(--payment-purple);
            font-size: 1.8rem;
        }
        
        .channel-list {
            list-style: none;
            max-height: 800px;
            overflow-y: auto;
            padding-right: 1rem;
        }
        
        .channel-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }
        
        .channel-list li:last-child {
            border-bottom: none;
        }
        
        .channel-number {
            background-color: var(--payment-purple);
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            margin-right: 1rem;
        }
        
        .payment-details {
            margin-bottom: 1.5rem;
        }
        
        .detail-item {
            margin-bottom: 1rem;
        }
        
        .detail-label {
            font-weight: 600;
            margin-bottom: 0.3rem;
            display: block;
        }
        
        .detail-value {
            color: #555;
        }
        
        .copy-btn {
            background-color: var(--light-color);
            border: none;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            cursor: pointer;
            margin-left: 0.5rem;
            transition: background-color 0.3s;
        }
        
        .copy-btn:hover {
            background-color: #ddd;
        }
        
        .online-payment {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(155, 89, 182, 0.05) 100%);
            border-radius: 10px;
            border: 1px solid rgba(155, 89, 182, 0.2);
        }
        
        .payment-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--payment-purple);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 1.5rem;
        }
        
        .payment-btn:hover {
            background-color: #8e44ad;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(155, 89, 182, 0.3);
        }
        
        .payment-btn i {
            margin-left: 0.5rem;
        }
        
        .work-hours {
            margin-bottom: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .contact-icon {
            width: 30px;
            height: 30px;
            background-color: var(--payment-purple);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        /* Footer Styles */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-about {
    color: var(--gray-200);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    color: var(--white);
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-200);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--gray-200);
}

.footer-contact-icon {
    margin-right: 0.8rem;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-200);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

/* Back to Top */
.back-to-top {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 50px;
height: 50px;
background: #1a4bc4;
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: var(--transition);
z-index: 999;
box-shadow: var(--shadow-md);
}

.back-to-top.visible {
opacity: 1;
visibility: visible;
}

.back-to-top:hover {
transform: translateY(-5px) scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links li {
        margin-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .header.scrolled .logo-img {
        height: 35px;
    }

    .header.scrolled .logo-text {
        font-size: 1.1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-about {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .logo-text {
        display: none;
    }
}