
        /* Общие стили */
        :root {
            --primary: #4a89dc; /* Мягкий синий */
            --secondary: #5d9cec; /* Светло-синий */
            --accent: #3bafda; /* Акцентный голубой */
            --dark: #2c3e50; /* Темно-синий */
            --light: #f5f7fa; /* Светлый фон */
            --gray: #aab2bd; /* Серый */
            --text: #434a54; /* Основной текст */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', Arial, sans-serif;
        }

        body {
            
            background-attachment: fixed;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
		
		.logo-container {
		    width: 50%;		
		}

        /* Шапка */
        header {
            background-color: var(--dark);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }

        .logo span {
            color: var(--accent);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--accent);
        }

        /* Слайдер с анонсами */
        .series-slider {
            position: relative;
            margin: 40px 0;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .slider-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .slider-title {
            font-size: 24px;
            color: var(--primary);
        }

        .slider-nav {
            display: flex;
            gap: 10px;
        }

        .slider-nav button {
            background: rgba(74, 137, 220, 0.1);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-nav button:hover {
            background: var(--primary);
            color: white;
        }

        .slider-container {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .slider-slide {
            min-width: 100%;
            position: relative;
        }

        .slider-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            right: 600px;
            bottom: 50px;
            max-width: 500px;
            background: rgba(44, 62, 80, 0.85);
            padding: 30px;
            border-radius: 8px;
            color: white;
            backdrop-filter: blur(5px);
        }

        .slide-title {
            font-size: 28px;
            margin-bottom: 15px;
            color: white;
        }

        .slide-description {
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .slide-meta {
            display: flex;
            gap: 20px;
            font-size: 14px;
            color: var(--accent);
        }

        .slide-rating {
            display: flex;
            align-items: center;
        }

        .slide-rating i {
            color: gold;
            margin-right: 5px;
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Телепрограмма */
        .schedule {
            background-color: white;
            padding: 40px 0;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .schedule-nav {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .schedule-nav button {
            background: rgba(74, 137, 220, 0.1);
            border: none;
            color: var(--primary);
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .schedule-nav button.active {
            background: var(--primary);
            color: white;
        }

        .schedule-list {
            display: none;
        }

        .schedule-list.active {
            display: block;
        }

        .schedule-item {
            display: flex;
            padding: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: background 0.3s;
        }

        .schedule-item:hover {
            background: rgba(74, 137, 220, 0.05);
        }

        .schedule-time {
            width: 80px;
            color: var(--primary);
            font-weight: bold;
        }

        .schedule-program {
            flex: 1;
        }

        .schedule-title {
            font-weight: 500;
            margin-bottom: 5px;
        }

        .schedule-description {
            color: var(--gray);
            font-size: 14px;
        }

        /* Новости */
        .news {
            margin: 40px 0;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .news-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .news-img {
            height: 180px;
            overflow: hidden;
        }

        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .news-card:hover .news-img img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 15px;
        }

        .news-date {
            color: var(--accent);
            font-size: 12px;
            margin-bottom: 5px;
        }

        .news-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .news-excerpt {
            color: var(--gray);
            font-size: 14px;
        }

        /* Футер */
        footer {
            background-color: var(--dark);
            padding: 40px 0 20px;
            color: white;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 18px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: white;
        }

        .footer-col ul li i {
            margin-right: 8px;
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            font-size: 20px;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--accent);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                gap: 15px;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .slider-container {
                height: 400px;
            }

            .slide-content {
                right: 20px;
                bottom: 20px;
                left: 20px;
                max-width: none;
            }

            .slide-title {
                font-size: 22px;
            }

            .schedule-item {
                flex-direction: column;
            }

            .schedule-time {
                margin-bottom: 5px;
            }
        }
.about_text {
font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
}

        @media (max-width: 480px) {
            .slider-container {
                height: 300px;
            }

            .slide-content {
                padding: 15px;
            }

            .slide-title {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .slide-description {
                font-size: 14px;
                margin-bottom: 10px;
            }

            .slide-meta {
                flex-direction: column;
                gap: 5px;
            }
        }
