        :root {
            --primary-color: #8A2BE2;
            --secondary-color: #4B0082;
            --accent-color: #9370DB;
            --boosty-orange: #FF6B35;
            --boosty-light: #FF8C42;
            --dark-bg: #0A0A1A;
            --light-bg: #1A1A2E;
            --card-bg: rgba(255, 255, 255, 0.05);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0D0;
            --gradient-purple: linear-gradient(135deg, #8A2BE2 0%, #4B0082 100%);
            --gradient-boosty: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
            --shadow-glow: 0 0 20px rgba(138, 43, 226, 0.5);
            --shadow-boosty: 0 0 20px rgba(255, 107, 53, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Анимации */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
            50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.8); }
        }

        @keyframes countdown {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(0.95); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* Header */
        .stream-header {
            min-height: 70vh;
            background: 
                linear-gradient(135deg, rgba(10, 10, 26, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%),
                url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .stream-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.25) 0%, transparent 50%);
            z-index: 1;
        }

        .header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .header-title {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #8A2BE2, #FF6B35, #9370DB);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 5s ease infinite;
        }

        .header-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .boosty-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gradient-boosty);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            animation: pulse 2s infinite, glow 2s infinite;
            text-decoration: none;
        }

        /* Кнопки */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-boosty {
            background: var(--gradient-boosty);
            color: white;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
        }

        .btn-boosty:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
            animation: pulse 1s infinite;
        }

        /* Ближайший эфир */
        .next-stream {
            padding: 4rem 2rem;
            background: rgba(255, 107, 53, 0.05);
            text-align: center;
        }

        .next-stream-card {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 107, 53, 0.1);
            border: 2px solid rgba(255, 107, 53, 0.3);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .next-stream-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .next-stream-card:hover::before {
            left: 100%;
        }

        .live-badge {
            display: inline-block;
            background: #FF0000;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: pulse 1s infinite;
        }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .countdown-item {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 1rem;
            min-width: 80px;
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: 700;
            color: #FF6B35;
            margin-bottom: 0.5rem;
            animation: countdown 1s infinite;
        }

        .countdown-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
        }

        /* Календарь */
        .calendar-section {
            padding: 6rem 2rem;
            background: var(--light-bg);
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 4rem;
            color: var(--text-primary);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #8A2BE2, #FF6B35);
            border-radius: 2px;
        }

        .calendar {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(138, 43, 226, 0.2);
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 107, 53, 0.3);
        }

        .calendar-nav {
            display: flex;
            gap: 1rem;
        }

        .nav-btn {
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            color: var(--text-primary);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: rgba(255, 107, 53, 0.3);
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1rem;
        }

        .calendar-day {
            text-align: center;
            color: var(--text-secondary);
            font-weight: 600;
            padding: 0.5rem;
        }

        .calendar-date {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 1rem;
            min-height: 100px;
            transition: all 0.3s ease;
            position: relative;
        }

        .calendar-date.has-stream {
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            cursor: pointer;
        }

        .calendar-date.has-stream:hover {
            background: rgba(255, 107, 53, 0.2);
            transform: translateY(-5px);
            box-shadow: var(--shadow-boosty);
        }

        .date-number {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .stream-indicator {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 10px;
            height: 10px;
            background: #FF6B35;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .stream-time {
            font-size: 0.9rem;
            color: #FF6B35;
            margin-top: 0.5rem;
        }

        .stream-topic {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-top: 0.3rem;
        }

        /* Все эфиры */
        .all-streams {
            padding: 6rem 2rem;
            background: 
                linear-gradient(135deg, rgba(10, 10, 26, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
        }

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

        .stream-card {
            background: var(--card-bg);
            border: 1px solid rgba(138, 43, 226, 0.2);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stream-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-boosty);
        }

        .stream-card:hover {
            transform: translateY(-10px);
            border-color: #FF6B35;
            box-shadow: var(--shadow-boosty);
        }

        .stream-date {
            font-size: 0.9rem;
            color: #FF6B35;
            margin-bottom: 0.5rem;
        }

        .stream-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .stream-desc {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .stream-status {
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .status-upcoming {
            background: rgba(255, 107, 53, 0.2);
            color: #FF6B35;
        }

        .status-live {
            background: rgba(255, 0, 0, 0.2);
            color: #FF0000;
            animation: pulse 1s infinite;
        }

        .status-past {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }

        /* Формат эфиров */
        .formats-section {
            padding: 6rem 2rem;
            background: rgba(255, 107, 53, 0.05);
        }

        .formats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 3rem auto 0;
        }

        .format-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .format-card:hover {
            transform: translateY(-5px);
            border-color: #FF6B35;
            box-shadow: var(--shadow-boosty);
        }

        .format-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #FF6B35;
        }

        /* Подписка */
        .subscription {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
            text-align: center;
        }

        .subscription-card {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(10, 10, 26, 0.8);
            border-radius: 20px;
            padding: 3rem;
            border: 2px solid rgba(255, 107, 53, 0.5);
            backdrop-filter: blur(10px);
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            border-top: 1px solid rgba(255, 107, 53, 0.3);
            padding: 4rem 2rem 2rem;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #FF6B35;
        }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 2rem;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .header-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .calendar-grid {
                grid-template-columns: repeat(7, 1fr);
                gap: 0.5rem;
            }
            
            .calendar-date {
                min-height: 80px;
                padding: 0.5rem;
            }
            
            .streams-grid {
                grid-template-columns: 1fr;
            }
            
            .countdown {
                gap: 0.5rem;
            }
            
            .countdown-item {
                min-width: 60px;
            }
            
            .countdown-number {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .header-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .calendar {
                padding: 1rem;
            }
            
            .calendar-date {
                min-height: 60px;
                font-size: 0.9rem;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        /* Скороллбар */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #8A2BE2, #FF6B35);
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #FF6B35;
        }
         /* Стили админ-кнопки */
        .admin-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            color: #FF6B35;
            border: 1px solid #FF6B35;
            padding: 10px 15px;
            border-radius: 5px;
            font-size: 12px;
            cursor: pointer;
            z-index: 1000;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .admin-btn:hover {
            background: #FF6B35;
            color: white;
        }