﻿@import url('https://fonts.googleapis.com/css2?family=Benguiat:wght@400;700&family=Inter:wght@400;600;700;900&display=swap');
:root {
    --accent: #ff0000;
    --accent-2: #b30000;
    --bg-deep: #050000;
    --text-main: #e0e0e0;
    --glass-border: rgba(255, 255, 255, 0.12);
}

        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #000;
            color: var(--text-main);
            line-height: 1.6;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Анимированный фон */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 30%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
                linear-gradient(180deg, #0a0a0a 0%, #050000 100%);
            z-index: -2;
            animation: bgPulse 10s ease-in-out infinite;
        }
        
        /* Floating particles */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20% 30%, rgba(255, 0, 0, 0.3), transparent),
                radial-gradient(2px 2px at 60% 70%, rgba(255, 0, 0, 0.2), transparent),
                radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.1), transparent),
                radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.1), transparent),
                radial-gradient(2px 2px at 90% 60%, rgba(255, 0, 0, 0.15), transparent),
                radial-gradient(1px 1px at 33% 50%, rgba(255, 255, 255, 0.1), transparent),
                radial-gradient(1px 1px at 70% 30%, rgba(255, 255, 255, 0.1), transparent);
            background-size: 200% 200%;
            background-position: 0% 0%;
            z-index: -1;
            opacity: 0.4;
            animation: particlesFloat 20s ease-in-out infinite;
        }
        
        @keyframes particlesFloat {
            0%, 100% { 
                background-position: 0% 0%; 
                opacity: 0.4;
            }
            50% { 
                background-position: 100% 100%; 
                opacity: 0.6;
            }
        }
        
        @keyframes bgPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
        .page {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }
        
        .page::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 300px;
            background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.1), transparent);
            filter: blur(60px);
            pointer-events: none;
        }
        
        .page__header h1 {
            font-family: 'Benguiat', Georgia, serif;
            font-size: 2.5em;
            color: #ff0000;
            text-align: center;
            margin: 50px 0;
            font-weight: 900;
            letter-spacing: 12px;
            text-transform: uppercase;
            position: relative;
            text-shadow: 
                0 0 10px rgba(255, 0, 0, 0.8),
                0 0 20px rgba(255, 0, 0, 0.6),
                0 0 30px rgba(255, 0, 0, 0.4),
                0 0 40px rgba(255, 0, 0, 0.2),
                0 0 70px rgba(255, 0, 0, 0.1);
            animation: flicker 4s ease-in-out infinite;
            padding: 30px 0;
        }
        
        .page__header h1::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, #ff0000, transparent);
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
            animation: slideDown 3s ease-in-out infinite;
        }
        
        .page__header h1::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, #ff0000, transparent);
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
            animation: slideDown 3s ease-in-out infinite reverse;
        }
        
        @keyframes slideDown {
            0%, 100% {
                transform: translateY(-20px);
                opacity: 0.3;
            }
            50% {
                transform: translateY(20px);
                opacity: 1;
            }
        }
        
        @keyframes flicker {
            0%, 100% {
                text-shadow: 
                    0 0 10px rgba(255, 0, 0, 0.8),
                    0 0 20px rgba(255, 0, 0, 0.6),
                    0 0 30px rgba(255, 0, 0, 0.4),
                    0 0 40px rgba(255, 0, 0, 0.2),
                    0 0 70px rgba(255, 0, 0, 0.1);
            }
            50% {
                text-shadow: 
                    0 0 5px rgba(255, 0, 0, 0.9),
                    0 0 15px rgba(255, 0, 0, 0.7),
                    0 0 25px rgba(255, 0, 0, 0.5),
                    0 0 35px rgba(255, 0, 0, 0.3),
                    0 0 60px rgba(255, 0, 0, 0.2);
            }
        }
        
        .page__header::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff0000 20%, #ff0000 80%, transparent);
            box-shadow: 
                0 0 20px rgba(255, 0, 0, 0.8),
                0 0 40px rgba(255, 0, 0, 0.4);
            animation: lineExpand 2s ease-in-out infinite;
        }

        .page__lead {
            max-width: 900px;
            margin: -12px auto 38px;
            text-align: center;
            color: #d0d0d0;
            font-size: 17px;
            line-height: 1.75;
            text-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
            position: relative;
            z-index: 1;
        }

        
        @keyframes lineExpand {
            0%, 100% {
                width: 300px;
                opacity: 1;
            }
            50% {
                width: 400px;
                opacity: 0.7;
            }
        }
        
        .page__cols {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .page__cols-left {
            flex: 1;
        }

        .page__cols-left--about {
            display: flex;
            align-items: flex-start;
            gap: 30px;
        }
        
        .page__poster {
            text-align: center;
            margin-bottom: 30px;
        }

        .page__cols-left--about .page__poster {
            width: min(400px, 38%);
            flex: 0 0 min(400px, 38%);
            margin-bottom: 0;
        }

        .page__cols-left--about .page__info {
            flex: 1;
            min-width: 0;
        }

        .page__season-media {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .page__season-media .page__player {
            width: 100%;
            margin: 0;
        }

        .page__season-media .season-nav {
            margin: 0;
        }
        
        .page__img {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 
                0 10px 40px rgba(255, 0, 0, 0.4),
                0 0 80px rgba(255, 0, 0, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .page__img:hover {
            transform: perspective(1000px) rotateY(-5deg) scale(1.05);
            box-shadow: 
                0 20px 60px rgba(255, 0, 0, 0.6),
                0 0 100px rgba(255, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.2);
            animation: glitch 0.3s ease-in-out;
        }
        
        @keyframes glitch {
            0%, 100% {
                transform: perspective(1000px) rotateY(-5deg) scale(1.05);
            }
            25% {
                transform: perspective(1000px) rotateY(-5deg) scale(1.05) translate(-2px, 0);
            }
            50% {
                transform: perspective(1000px) rotateY(-5deg) scale(1.05) translate(2px, 0);
            }
            75% {
                transform: perspective(1000px) rotateY(-5deg) scale(1.05) translate(-1px, 0);
            }
        }
        
        .page__img::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 70%
            );
            transform: rotate(45deg);
            animation: shine 3s ease-in-out infinite;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        
        .page__img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .item__label {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 14px;
            letter-spacing: 2px;
            box-shadow: 
                0 4px 15px rgba(255, 0, 0, 0.5),
                0 0 20px rgba(255, 0, 0, 0.3),
                inset 0 -2px 10px rgba(0, 0, 0, 0.3);
            z-index: 10;
            animation: labelPulse 2s ease-in-out infinite;
        }
        
        @keyframes labelPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .page__rating-ext {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin: 30px 0;
            font-size: 18px;
        }
        
        .page__ratingscore-ring {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: conic-gradient(
                #ff0000 0%,
                #ff0000 var(--p),
                rgba(255, 255, 255, 0.1) var(--p),
                rgba(255, 255, 255, 0.1) 100%
            );
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 900;
            color: #fff;
            position: relative;
            box-shadow: 
                0 0 30px rgba(255, 0, 0, 0.5),
                inset 0 0 20px rgba(0, 0, 0, 0.5);
            animation: rotate 3s linear infinite;
        }
        
        @keyframes rotate {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(15deg); }
        }
        
        .page__ratingscore-ring::before {
            content: '';
            position: absolute;
            width: 75px;
            height: 75px;
            background: 
                radial-gradient(circle, #1a0000 0%, #0a0000 100%);
            border-radius: 50%;
            z-index: -1;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
        }
        
        .page__ratingscore-ring::after {
            content: '';
            position: absolute;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            border: 2px solid rgba(255, 0, 0, 0.2);
            animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }
        
        @keyframes ping {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }
        
        .page__rating-ext a {
            color: #ff0000;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 12px 20px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(139, 0, 0, 0.05));
            border: 2px solid rgba(255, 0, 0, 0.3);
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }
        
        .page__rating-ext a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 0, 0, 0.3), transparent);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .page__rating-ext a:hover {
            color: #fff;
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(139, 0, 0, 0.2));
            border-color: #ff0000;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                0 10px 25px rgba(255, 0, 0, 0.4),
                0 0 40px rgba(255, 0, 0, 0.2);
        }
        
        .page__rating-ext a:hover::before {
            width: 300px;
            height: 300px;
        }

        .page__rating-ext a.is-active {
            color: #fff;
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.35), rgba(139, 0, 0, 0.25));
            border-color: #ff3333;
            box-shadow:
                0 10px 25px rgba(255, 0, 0, 0.35),
                0 0 40px rgba(255, 0, 0, 0.2);
        }

        .page__rating-ext a:focus-visible {
            outline: 2px solid #ff3333;
            outline-offset: 2px;
        }
        
        .page__rating-ext a span {
            position: relative;
            z-index: 1;
        }
        
        .page__list {
            list-style: none;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.05) 0%,
                rgba(255, 255, 255, 0.02) 100%
            );
            padding: 30px;
            border-radius: 20px;
            margin: 20px 0;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        .page__list li {
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            gap: 15px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .page__list li::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background: linear-gradient(180deg, #ff0000, #8b0000);
            transition: height 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
        }
        
        .page__list li:hover {
            padding-left: 15px;
            background: linear-gradient(90deg, rgba(255, 0, 0, 0.08), transparent);
        }
        
        .page__list li:hover::before {
            height: 100%;
        }
        
        .page__list li:last-child {
            border-bottom: none;
        }
        
        .page__list li span:first-child {
            font-weight: 700;
            color: #ff0000;
            min-width: 180px;
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
        }

        .page__list-rates {
            display: grid;
            grid-template-columns: 180px 1fr;
            align-items: center;
            gap: 16px;
            padding: 18px 0 !important;
        }

        .page__list-rates:hover {
            padding-left: 0 !important;
            background: none !important;
        }

        .page__list-rates::before {
            display: none !important;
        }

        .page__list-rates-title {
            font-weight: 700;
            color: #ff0000;
            min-width: 180px;
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
        }

        .page__list-rates-values {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        
        .page__list-rates-item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 96px;
            padding: 14px 20px 10px;
            border-radius: 14px;
            font-weight: 900;
            position: relative;
            font-size: 18px;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 
                0 6px 18px rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform: translateY(0);
        }
        
        .page__list-rates-item:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 10px 26px rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }
        
        .page__list-rates-item::before {
            content: attr(data-text);
            font-size: 10px;
            position: absolute;
            top: 6px;
            left: 10px;
            font-weight: 700;
            letter-spacing: 0.8px;
            opacity: 0.9;
            text-transform: uppercase;
        }
        
        .imdb {
            background: linear-gradient(135deg, #f5c518 0%, #e6b800 100%);
            color: #000;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
        }
        
        .kp {
            background: linear-gradient(135deg, #ff6600 0%, #cc5200 100%);
            color: #fff!important;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3)!important;
            min-width: 96px!important;
        }
        
        .page__subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.8em;
            font-weight: 700;
            color: #fff;
            margin: 60px 0 40px;
            text-align: center;
            position: relative;
            padding: 0 20px;
        }
        
        .page__subtitle::before {
            content: '';
            position: absolute;
            left: 50%;
            top: -20px;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff0000, transparent);
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
        }
        
        .page__subtitle::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 100%;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 0, 0, 0.5) 50%,
                transparent 100%
            );
        }


        .season-cards {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 14px;
            margin: 0 0 36px;
        }

        .descr .season-cards {
            margin: 18px 0 36px;
        }

        .season-card {
            background:
                linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
                radial-gradient(circle at 90% 10%, rgba(255, 0, 0, 0.14), transparent 45%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 16px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .season-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 0, 0, 0.4);
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 0, 0, 0.14);
        }

        .season-card.is-active {
            border-color: rgba(255, 0, 0, 0.62);
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.48), 0 0 28px rgba(255, 0, 0, 0.3);
            transform: translateY(-3px);
        }

        .season-card__meta {
            display: inline-block;
            color: #ff8888;
            font-size: 12px;
            letter-spacing: 0.8px;
            margin-bottom: 8px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .season-card h3 {
            font-size: 20px;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .season-card p {
            color: #cfcfcf;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 14px;
            min-height: 62px;
        }

        .season-card__btn {
            display: block;
            width: 100%;
            border: 1px solid rgba(255, 0, 0, 0.35);
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.24), rgba(120, 0, 0, 0.22));
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            border-radius: 10px;
            padding: 10px 12px;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .season-card__btn:hover {
            transform: translateY(-1px);
            border-color: rgba(255, 0, 0, 0.6);
            box-shadow: 0 8px 18px rgba(255, 0, 0, 0.25);
        }

        .season-card__btn:focus-visible {
            outline: 2px solid #ff3333;
            outline-offset: 2px;
        }
        
        .page__player {
            background: 
                linear-gradient(135deg, rgba(20, 0, 0, 0.9) 0%, rgba(10, 0, 0, 0.7) 100%),
                radial-gradient(ellipse at top left, rgba(255, 0, 0, 0.1), transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(139, 0, 0, 0.1), transparent 50%);
            border-radius: 24px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 0, 0, 0.3);
            box-shadow: 
                0 25px 70px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(255, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05),
                inset 0 -1px 0 rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
        }
        
        .page__player::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(255, 0, 0, 0.06) 0%, transparent 40%);
            animation: playerGlow 12s linear infinite;
        }
        
        .page__player::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.02) 0%,
                transparent 50%,
                rgba(0, 0, 0, 0.1) 100%
            );
            pointer-events: none;
        }
        
        @keyframes playerGlow {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(50%, 50%) rotate(360deg); }
        }
        
        .page__player-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
            position: relative;
            z-index: 1;
        }
        
        .tabs-block__select {
            display: flex;
            gap: 12px;
            background: rgba(0, 0, 0, 0.3);
            padding: 6px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .tabs-block__select button {
            background: transparent;
            color: #999;
            border: none;
            padding: 14px 28px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 700;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .tabs-block__select button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ff0000, #cc0000);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .tabs-block__select button:hover {
            color: #fff;
            transform: translateY(-2px);
        }
        
        .tabs-block__select button:hover::before {
            opacity: 0.2;
        }
        
        .tabs-block__select button.is-active {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: #fff;
            box-shadow: 
                0 4px 20px rgba(255, 0, 0, 0.4),
                0 0 30px rgba(255, 0, 0, 0.2);
            transform: translateY(-2px);
        }
        
        .tabs-block__select button.is-active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: #ff0000;
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
        }
        
        .video-inside {
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            min-height: 480px;
            align-items: center;
            position: relative;
            border: 3px solid transparent;
            background-clip: padding-box;
        }
        
        .video-inside::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(
                60deg,
                #ff0000,
                #ff3333,
                #ff0000,
                #cc0000,
                #ff0000
            );
            background-size: 300% 300%;
            border-radius: 16px;
            z-index: -1;
            opacity: 0.5;
            animation: gradientBorder 4s ease infinite;
            filter: blur(2px);
        }
        
        @keyframes gradientBorder {
            0%, 100% { 
                background-position: 0% 50%; 
            }
            50% { 
                background-position: 100% 50%; 
            }
        }
        
        .video-inside::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 255, 0.015) 2px,
                    rgba(255, 255, 255, 0.015) 4px
                );
            pointer-events: none;
            opacity: 0.5;
            animation: scanlines 8s linear infinite;
        }

        .player-skeleton {
            width: min(900px, 92%);
            margin: 0 auto;
            display: grid;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .player-skeleton__line {
            height: 14px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 0, 0, 0.22), rgba(255, 255, 255, 0.08));
            background-size: 220% 100%;
            animation: skeletonShift 1.2s ease infinite;
        }

        .player-skeleton__line--lg {
            height: 18px;
            width: 58%;
        }

        .player-skeleton__line--md {
            width: 86%;
        }

        .player-skeleton__line--sm {
            width: 74%;
        }

        @keyframes skeletonShift {
            0% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(20px); }
        }
        
        .page__cols-right {
            width: 350px;
        }
        
        .page__fr {
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%),
                linear-gradient(225deg, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
            border-radius: 24px;
            padding: 30px;
            position: sticky;
            top: 20px;
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(255, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
        }
        
        .page__fr::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: 
                radial-gradient(ellipse at top, rgba(255, 0, 0, 0.15) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
            border-radius: 24px 24px 0 0;
            pointer-events: none;
        }
        
        .page__fr::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.03) 0%,
                transparent 50%,
                rgba(0, 0, 0, 0.05) 100%
            );
            border-radius: 24px;
            pointer-events: none;
        }
        
        .page__fr-caption {
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: #ff0000;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 
                0 0 20px rgba(255, 0, 0, 0.5),
                0 0 40px rgba(255, 0, 0, 0.3);
            position: relative;
            z-index: 1;
            padding-bottom: 15px;
        }
        
        .page__fr-caption::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #ff0000, transparent);
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
        }
        
        .player-tabs__nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .player-tab-btn {
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.05) 0%,
                rgba(255, 255, 255, 0.02) 100%
            );
            border: 2px solid transparent;
            color: #e0e0e0;
            padding: 18px 20px;
            border-radius: 12px;
            cursor: pointer;
            text-align: left;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }
        
        .player-tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 0, 0, 0.2),
                transparent
            );
            transition: left 0.5s ease;
        }
        
        .player-tab-btn:hover::before {
            left: 100%;
        }
        
        .player-tab-btn:hover {
            background: linear-gradient(
                135deg,
                rgba(255, 0, 0, 0.15) 0%,
                rgba(255, 0, 0, 0.08) 100%
            );
            border-color: rgba(255, 0, 0, 0.4);
            transform: translateX(8px);
            box-shadow: 
                -4px 0 20px rgba(255, 0, 0, 0.2),
                inset 0 0 20px rgba(255, 0, 0, 0.1);
        }
        
        .player-tab-btn.is-active {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            border-color: #ff0000;
            color: #fff;
            transform: translateX(8px);
            box-shadow: 
                -8px 0 30px rgba(255, 0, 0, 0.5),
                0 0 50px rgba(255, 0, 0, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.3),
                inset 0 -2px 5px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .player-tab-btn.is-active::before {
            left: 0;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            animation: activeShine 2s ease-in-out infinite;
        }
        
        @keyframes activeShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .player-tab-btn.is-active::after {
            content: '▶';
            position: absolute;
            left: -30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 14px;
            color: #ff0000;
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
            animation: bounce 2s ease-in-out infinite;
        }
        
        @keyframes bounce {
            0%, 100% { 
                transform: translateY(-50%) translateX(0); 
                opacity: 0.5;
            }
            50% { 
                transform: translateY(-50%) translateX(8px); 
                opacity: 1;
            }
        }
        
        .tab-num {
            font-weight: 900;
            margin-right: 10px;
            font-size: 16px;
            color: #ff0000;
        }
        
        .player-tab-btn.is-active .tab-num {
            color: #fff;
        }
        
        .descr {
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.05) 0%,
                rgba(255, 255, 255, 0.02) 50%,
                rgba(255, 0, 0, 0.02) 100%
            );
            padding: 45px;
            border-radius: 24px;
            margin-top: 60px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(255, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.08),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        .descr::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: radial-gradient(
                ellipse at 50% 0%,
                rgba(255, 0, 0, 0.08) 0%,
                transparent 70%
            );
            border-radius: 24px 24px 0 0;
            pointer-events: none;
        }
        
        .descr h2 {
            font-family: 'Inter', sans-serif;
            color: #ff0000;
            font-size: 2.2em;
            font-weight: 800;
            margin: 50px 0 30px;
            text-shadow: 
                0 0 20px rgba(255, 0, 0, 0.5),
                0 0 40px rgba(255, 0, 0, 0.3);
            position: relative;
            padding-left: 25px;
            z-index: 1;
        }
        
        .descr h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 85%;
            background: linear-gradient(180deg, #ff0000, #8b0000);
            border-radius: 3px;
            box-shadow: 
                0 0 15px rgba(255, 0, 0, 0.8),
                0 0 30px rgba(255, 0, 0, 0.4);
        }
        
        .descr h2:first-child {
            margin-top: 0;
        }

        .descr-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 6px 0 24px;
            position: relative;
            z-index: 1;
        }

        .descr-tab {
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.04);
            color: #cfcfcf;
            border-radius: 10px;
            padding: 10px 14px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.4px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .descr-tab:hover {
            color: #fff;
            border-color: rgba(255, 0, 0, 0.4);
            background: rgba(255, 0, 0, 0.12);
        }

        .descr-tab.is-active {
            color: #fff;
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.36), rgba(130, 0, 0, 0.35));
            border-color: rgba(255, 0, 0, 0.58);
            box-shadow: 0 8px 18px rgba(255, 0, 0, 0.2);
        }

        .descr-panel {
            position: relative;
            z-index: 1;
        }

        .descr-panel[hidden] {
            display: none !important;
        }

        .descr-panel.is-active {
            animation: panelIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
        }

        @keyframes panelIn {
            0% {
                opacity: 0;
                transform: translateY(8px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .descr h3 {
            color: #ff6666;
            font-size: 1.4em;
            font-weight: 700;
            margin: 30px 0 18px;
            position: relative;
            z-index: 1;
        }
        
        .descr p {
            margin-bottom: 28px;
            font-size: 16px;
            line-height: 2;
            color: #d5d5d5;
            position: relative;
            z-index: 1;
        }
        
        .descr ul {
            margin: 30px 0;
            padding-left: 35px;
        }
        
        .descr ul li {
            margin-bottom: 20px;
            line-height: 2;
            position: relative;
            padding-left: 15px;
        }
        
        .descr ul li::marker {
            color: #ff0000;
        }
        
        .descr ul li::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 12px;
            width: 6px;
            height: 6px;
            background: #ff0000;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
        }
        
        .descr img {
            max-width: 100%;
            border-radius: 16px;
            margin: 35px 0;
            box-shadow: 
                0 15px 50px rgba(0, 0, 0, 0.6),
                0 0 80px rgba(255, 0, 0, 0.25),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 0, 0, 0.2);
            transition: all 0.5s ease;
        }
        
        .descr img:hover {
            transform: scale(1.02);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 100px rgba(255, 0, 0, 0.35),
                inset 0 0 0 1px rgba(255, 255, 255, 0.15);
        }
        
        .faq-block ul {
            list-style: none;
            padding: 0;
        }
        
        .faq-block li {
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.08) 0%,
                rgba(255, 255, 255, 0.03) 50%,
                rgba(255, 0, 0, 0.03) 100%
            );
            padding: 28px;
            border-radius: 18px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }
        
        .faq-block li::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #ff0000, #8b0000);
            opacity: 0;
            transition: opacity 0.4s ease;
            box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
        }
        
        .faq-block li::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: radial-gradient(
                circle at 90% 90%,
                rgba(255, 0, 0, 0.1) 0%,
                transparent 60%
            );
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .faq-block li:hover {
            background: linear-gradient(
                135deg,
                rgba(255, 0, 0, 0.12) 0%,
                rgba(255, 0, 0, 0.06) 50%,
                rgba(255, 0, 0, 0.08) 100%
            );
            border-color: rgba(255, 0, 0, 0.4);
            transform: translateX(8px) scale(1.01);
            box-shadow: 
                -8px 0 25px rgba(255, 0, 0, 0.2),
                0 8px 35px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        .faq-block li:hover::before {
            opacity: 1;
        }
        
        .faq-block li:hover::after {
            opacity: 1;
        }
        
        .faq-block b {
            color: #ff0000;
            display: block;
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 700;
            text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
            position: relative;
            z-index: 1;
        }
        
        .page__complaint {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .page__complaint a {
            color: #ff0000;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 10px 18px;
            border-radius: 10px;
            background: rgba(255, 0, 0, 0.1);
            border: 1px solid rgba(255, 0, 0, 0.2);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .page__complaint a:hover {
            color: #fff;
            background: rgba(255, 0, 0, 0.2);
            border-color: #ff0000;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
        }

        .page__footer {
            margin-top: 40px;
            padding: 24px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
            text-align: center;
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
            line-height: 1.6;
        }

        .page__footer a {
            color: #ff6666;
            text-decoration: none;
        }

        .page__footer a:hover {
            color: #ff0000;
            text-decoration: underline;
        }

        a:focus-visible,
        button:focus-visible {
            outline: 2px solid #ff3333;
            outline-offset: 2px;
        }

        .season-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin: 20px 0 30px;
        }

        .season-nav__link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 10px 16px;
            border-radius: 8px;
            border: 1px solid #ff0000;
            background: rgba(255, 0, 0, 0.08);
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: 0.2s ease;
        }

        .season-nav__link:hover {
            background: rgba(255, 0, 0, 0.2);
            box-shadow: 0 0 14px rgba(255, 0, 0, 0.25);
        }

        .season-nav__link--disabled {
            border-color: #555;
            background: rgba(255, 255, 255, 0.05);
            color: #999;
            cursor: not-allowed;
            box-shadow: none;
        }
        
        @media (max-width: 968px) {
            .page__cols {
                flex-direction: column;
            }

            .season-nav {
                flex-direction: column;
            }

            .season-nav__link {
                width: 100%;
            }

            .season-cards {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .page__cols-left--about {
                flex-direction: column;
            }

            .page__cols-left--about .page__poster {
                width: 100%;
                flex-basis: auto;
                margin-bottom: 30px;
            }
            
            .page__cols-right {
                width: 100%;
                position: static;
            }
            
            .page__header h1 {
                font-size: 2em;
                letter-spacing: 4px;
            }

            .page__lead {
                font-size: 15px;
                margin: -6px auto 28px;
            }

            
            .page__subtitle {
                font-size: 1.4em;
            }
            
            .descr {
                padding: 25px;
            }
            
            .descr h2 {
                font-size: 1.6em;
            }

            .page__list-rates {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .page__list-rates-title {
                min-width: 0;
            }
        }
        
        @media (max-width: 640px) {
            .page__header h1 {
                font-size: 1.5em;
                letter-spacing: 2px;
            }

            .season-cards {
                grid-template-columns: 1fr;
            }
            
            .page__rating-ext {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .page__ratingscore-ring {
                width: 80px;
                height: 80px;
                font-size: 24px;
            }
            
            .tabs-block__select {
                width: 100%;
                justify-content: center;
            }
            
            .tabs-block__select button {
                flex: 1;
                padding: 12px 16px;
                font-size: 12px;
            }

        }
        
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #ff0000, #8b0000);
            border-radius: 6px;
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #ff3333, #ff0000);
        }
        
        ::selection {
            background: rgba(255, 0, 0, 0.3);
            color: #fff;
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

