@font-face {
          font-family: 'Impact';
          src: url('/fonts/impact.woff2') format('woff2');
          font-weight: normal;
          font-style: normal;
          font-display: swap;
        }
        :root {
            --primary: rgb(139, 0, 0);
            --primary-light: rgba(139, 0, 0, 0.1);
            --text: #1a1a1a;
            --text-secondary: #666666;
            --white: #FFFFFF;
            --border: rgba(0, 0, 0, 0.08);
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 12px 30px rgba(139, 0, 0, 0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            --font-body: Georgia, serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
          font-family: var(--font-body);
          color: var(--text);
          line-height: 1.7;
          overflow-x: hidden;
          background: 
            linear-gradient(rgba(245, 240, 230, 0.7), rgba(245, 240, 230, 0.7)), /* Основной цвет — светло-бежевый */
            url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.86 0 7-3.14 7-7s-3.14-7-7-7-7 3.14-7 7 3.14 7 7 7zm48 25c3.86 0 7-3.14 7-7s-3.14-7--7-7 3.14-7 7 3.14 7 7 7zm-43 45c3.86 0 7-3.14 7-7s-3.14-7-7-7-7 3.14-7 7 3.14 7 7 7zm48 25c3.86 0 7-3.14 7-7s-3.14-7-7-7-7 3.14-7 7 3.14 7 7 7z' fill='%23d9d0c5' fill-opacity='0.05'/%3E%3C/svg%3E");
          background-size: 100px 100px; /* Размер повтора текстуры */
          background-repeat: repeat;
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            width: 0%;
            background: var(--primary);
            z-index: 1000;
            transition: width 0.2s ease;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 999;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(0px);
        }

        nav.scrolled {
            padding: 1rem 5%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .logo {
            font-family: var(--font-heading);
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--primary);
            text-decoration: none;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text);
            z-index: 1000;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('hero.webp') center/cover no-repeat;
            z-index: -1;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--white);
            margin-bottom: 1rem;
            position: relative;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--primary);
        }

        .hero p.subtitle {
            color: var(--white);
            font-size: clamp(1rem, 3vw, 1.25rem);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .hero p {
            color: var(--white);
            font-size: clamp(1rem, 1.5vw, 1.125rem);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }

        .hero-btn {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 18px 40px;
            border-radius: var(--radius-sm);
            font-size: 1.125rem;
            text-decoration: none;
            transition: var(--transition);
            font-weight: bold;
            box-shadow: 0 4px 20px rgba(139, 0, 0, 0.2);
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-btn.secondary {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .hero-btn:hover {
            background: rgb(110, 0, 0);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
        }

        /* Section Styles */
        section {
            padding: var(--spacing-xl) 5%;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--primary);
            text-align: center;
            margin-bottom: var(--spacing-md);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--primary);
        }

        .section-subtitle {
            font-family: var(--font-body);
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            color: var(--primary);
            text-align: center;
            max-width: 800px;
            margin: 0 auto var(--spacing-md);
        }

        /* About Section */
        .about {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
            align-items: center;
            max-width: 1120px;
            margin: 0 auto;
        }

        .about-content {
           max-width: 1000px;
           margin: 0 auto;
           padding: 0 1rem;
        }
        
        @media (min-width: 768px) {
            .about-content {
                padding: 0 2rem;
            }
        }
        
        @media (min-width: 1024px) {
            .about {
                grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
                align-items: start;
            }

            .about-content {
                padding: 0;
            }
        }
        
        @media (min-width: 1440px) {
            .about-content {
                padding: 0;
            }
        }
        
        /* Все остальные стили остаются без изменений */
        .about-content p {
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
            line-height: 1.8;
            text-align: left;
        }
        
        .quote {
            font-size: 1.25rem;
            color: var(--primary);
            line-height: 1.6;
            border-left: 4px solid var(--primary);
            padding-left: 24px;
            margin: 2rem 0;
            text-align: left;
        }

        .about-video {
            width: min(100%, 320px);
            justify-self: center;
        }

        .video-container {
            position: relative;
            width: 100%;
            aspect-ratio: 9/16;
            max-height: min(72vh, 570px);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            margin-bottom: var(--spacing-md);
            transition: var(--transition);
        }

        .video-container:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .teaser-video {
            display: block;
            width: 100%;
            height: 100%;
            background: #000;
            object-fit: contain;
        }

        .local-video-placeholder {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            cursor: pointer;
            background:
                linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42)),
                url('hero.webp') center/cover no-repeat;
        }

        .local-video-placeholder::after {
            content: '';
            position: absolute;
            inset: 0;
            backdrop-filter: blur(1px);
            -webkit-backdrop-filter: blur(1px);
        }

        .local-video-placeholder span {
            position: absolute;
            left: 50%;
            top: 50%;
            z-index: 1;
            width: 68px;
            height: 68px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.35);
            transform: translate(-50%, -50%);
            transition: var(--transition);
        }

        .local-video-placeholder span::after {
            content: '';
            position: absolute;
            left: 28px;
            top: 21px;
            width: 0;
            height: 0;
            border-top: 13px solid transparent;
            border-bottom: 13px solid transparent;
            border-left: 19px solid var(--white);
        }

        .local-video-placeholder:hover span {
            transform: translate(-50%, -50%) scale(1.08);
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .play-btn {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: var(--transition);
        }

        .play-btn:hover {
            background: var(--primary);
            transform: scale(1.1);
        }

        .play-btn::after {
            content: '';
            display: block;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid white;
            margin-left: 3px;
        }

        .vk-lazy {
            width: 100%;
            height: 100%;
            border: 0;
            background: #000;
        }

        .vk-lazy-placeholder {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            cursor: pointer;
            color: var(--white);
            background:
                linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.62)),
                #111;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            font-family: var(--font-body);
            font-size: 1.1rem;
            text-align: center;
            padding: 24px;
        }

        .vk-lazy-placeholder span {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.35);
            position: relative;
        }

        .vk-lazy-placeholder span::after {
            content: '';
            position: absolute;
            left: 26px;
            top: 20px;
            width: 0;
            height: 0;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            border-left: 18px solid var(--white);
        }

        /* Idea Section */
        .idea {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .idea p {
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: var(--spacing-md);
        }

        .idea p.highlight {
            color: var(--primary);
        }

        .divider {
            display: flex;
            justify-content: center;
            margin: var(--spacing-md) 0;
        }

        .divider span {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            margin: 0 10px;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: var(--spacing-lg);
        }

        .team-card {
            background: var(--white);
            border-radius: var(--radius-md);
            border: 1px solid rgba(139, 0, 0, 0.2);
            box-shadow: var(--shadow-sm);
            padding: 24px;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
        }

        .team-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .team-img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: var(--radius-md);
            margin-bottom: 20px;
        }

        .team-card h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 8px;
            font-weight: normal;
        }

        .team-role {
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-secondary);
            font-size: 0.875rem;
            margin-bottom: 12px;
            font-weight: normal;
        }

        /* Premieres Section */
        .premieres {
            /*background: var(--white);*/
        }

        .premieres-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: var(--spacing-lg);
        }

        .premieres-intro {
            text-align: center;
            font-style: italic;
            margin: 0 auto 1.5rem;
            color: var(--text-secondary);
            font-size: 1.125rem;
            line-height: 1.6;
            max-width: 900px;
        }

        .premiere-group-title {
            font-family: var(--font-heading);
            color: var(--primary);
            font-size: clamp(1.8rem, 4vw, 2.7rem);
            font-weight: normal;
            margin: var(--spacing-lg) 0 1rem;
            text-align: center;
        }

        .premiere-group-title::before,
        .premiere-group-title::after {
            content: '';
            display: inline-block;
            width: 34px;
            height: 1px;
            background: rgba(139, 0, 0, 0.35);
            vertical-align: middle;
            margin: 0 14px;
        }

        .premiere-card {
          border: 1px solid var(--border);
          border-radius: var(--radius-md);
          padding: 32px;
          transition: var(--transition);
          background: var(--white);
          display: flex;
          flex-direction: column;
          position: relative;
          overflow: hidden;
        }

        .premiere-card::before {
          content: '';
          position: absolute;
          top: 18px;
          right: 18px;
          width: 7px;
          height: 7px;
          border-radius: 50%;
          background: rgba(139, 0, 0, 0.28);
          box-shadow: -16px 0 rgba(139, 0, 0, 0.16), -32px 0 rgba(139, 0, 0, 0.08);
        }

        .premiere-card.featured {
          grid-column: 1 / -1;
          display: grid;
          grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
          gap: 28px;
          align-items: end;
          border-color: rgba(139, 0, 0, 0.35);
          box-shadow: var(--shadow-md);
          background:
            linear-gradient(135deg, rgba(139, 0, 0, 0.08), rgba(255, 255, 255, 0) 48%),
            var(--white);
        }

        .premiere-card.featured > *:last-child {
          margin-top: 0;
        }

        .premiere-meta {
          display: grid;
          gap: 10px;
          margin: 18px 0;
        }

        .premiere-meta span {
          color: var(--text-secondary);
        }

        .premiere-meta strong {
          color: var(--text);
          font-weight: bold;
        }

        .premiere-action {
          display: flex;
          flex-direction: column;
          gap: 10px;
        }
        .premiere-card > *:last-child {
          margin-top: auto;
        }

        .premiere-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }

        .city-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 16px;
        }

        .premiere-date {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 12px;
            font-weight: normal; /* Сделать regular */
        }

        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        .badge.confirmed {
            background: rgba(0, 128, 0, 0.1);
            color: green;
            margin-bottom: 8px;
        }

        .badge.pending {
            background: rgba(255, 204, 0, 0.1);
            color: #b38900;
            margin-bottom: 8px;
        }
        
        .badge.sold-out {
            background: rgba(139, 0, 0, 0.1); 
            color: var(--primary);
            margin-bottom: 8px;
        }

        .register-btn {
            display: block;
            background: var(--primary);
            color: var(--white);
            padding: 20px 48px;
            border-radius: var(--radius-sm);
            font-size: 1.125rem;
            text-decoration: none;
            transition: var(--transition);
            font-weight: bold;
            text-transform: none; /* Убрали uppercase */
            letter-spacing: 2px;
            margin: 2rem auto 0; /* Добавили верхний отступ */
            width: 100%;
            max-width: 500px;
            text-align: center; /* Центрируем текст внутри кнопки */
        }

        .register-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4);
        }

        /* Choice Space Section */
        .choice-space {
            background: var(--primary-light);
            border-radius: var(--radius-md);
            padding: var(--spacing-lg);
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            margin-bottom: 6rem; /* Добавить больше воздуха перед футером */
        }

        .choice-space::before,
        .choice-space::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }

        .choice-space::before {
            top: 20px;
            left: 20px;
        }

        .choice-space::after {
            bottom: 20px;
            right: 20px;
        }

        .choice-space p {
            font-size: 1.125rem;
            line-height: 1.8;
            text-align: center;
            margin-bottom: var(--spacing-sm);
        }

        .choice-space .ticket-btn {
            max-width: 360px;
            margin: 22px auto 0;
            display: block;
        }

        /* Footer */
        footer {
            background: #333333; /* Тёмно-серый фон */
            padding: 60px 0;
            text-align: center;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--primary);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: var(--spacing-md) 0;
        }

        .social-links a {
            color: #fff;
            font-size: 1.5rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-links a:hover {
            color: var(--primary);
        }

        .copyright {
            color: #aaa;
            font-size: 0.875rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: var(--white);
            z-index: 998;
            transition: right 0.4s ease;
            padding: 5rem 2rem 2rem;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 2rem;
        }

        .mobile-menu-links a {
            font-size: 1.5rem;
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
        }

        .mobile-menu-links a:hover {
            color: var(--primary);
        }

        /* Responsive */
        @media (max-width: 1199px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .premieres-grid {
                grid-template-columns: 1fr;
            }

            .premiere-card.featured {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .about {
                grid-template-columns: 1fr;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                display: none;
            }
            
            .section-title {
                font-size: 2.5rem;
            }

            .premiere-group-title::before,
            .premiere-group-title::after {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
        }
   
               /* Heroes Section */
            .heroes-section {
                /*background: var(--white);*/
                padding: var(--spacing-xl) 5%;
            }

            .heroes-intro {
                text-align: center;
                font-style: italic;
                margin: 0 auto 1.75rem;
                color: var(--text-secondary);
                max-width: 780px;
            }
            
            .heroes-grid {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 26px;
                margin-top: var(--spacing-lg);
                max-width: 980px;
                margin-left: auto;
                margin-right: auto;
                counter-reset: heroine-card;
            }
            
            @media (max-width: 1199px) {
                .heroes-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
            
            @media (max-width: 768px) {
                .heroes-grid {
                    grid-template-columns: 1fr; /* Одна колонка на мобильных */
                    gap: 24px;
                }
                
                .hero-card {
                    max-width: 420px;
                    margin: 0 auto;
                }
            }
            
            .hero-card {
                background: var(--white);
                border-radius: var(--radius-md);
                border: 1px solid rgba(139, 0, 0, 0.14);
                box-shadow: var(--shadow-sm);
                padding: 28px 30px;
                transition: var(--transition);
                opacity: 0;
                transform: translateY(20px);
                position: relative;
                overflow: hidden;
                min-height: 148px;
                display: flex;
                align-items: flex-end;
                counter-increment: heroine-card;
                background:
                    linear-gradient(135deg, rgba(139, 0, 0, 0.07), rgba(255,255,255,0) 45%),
                    linear-gradient(180deg, rgba(255,255,255,1), rgba(255, 250, 248, 1));
            }
            
            .hero-card.visible {
                opacity: 1;
                transform: translateY(0);
            }
            
            .hero-card:hover {
                transform: translateY(-6px);
                box-shadow: var(--shadow-md);
            }

            .hero-card::before {
                content: counter(heroine-card, decimal-leading-zero);
                position: absolute;
                top: 22px;
                right: 26px;
                font-family: var(--font-heading);
                font-size: 2rem;
                line-height: 1;
                color: rgba(139, 0, 0, 0.14);
            }

            .hero-card::after {
                content: '';
                position: absolute;
                top: 24px;
                right: 24px;
                width: 52px;
                height: 52px;
                border-radius: 16px;
                border: 1px solid rgba(139, 0, 0, 0.12);
                background:
                    radial-gradient(circle at 18px 18px, rgba(139, 0, 0, 0.28) 0, rgba(139, 0, 0, 0.28) 4px, transparent 5px),
                    linear-gradient(145deg, rgba(139, 0, 0, 0.08), rgba(255,255,255,0.14));
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
            }
            
            .hero-img {
                width: 100%;
                aspect-ratio: 1/1;
                object-fit: cover;
                border-radius: var(--radius-md);
                margin-bottom: 20px;
                background: #f0f0f0; /* Заглушка до добавления фото */
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ccc;
                font-size: 0.8rem;
                text-align: center;
            }
            
            .hero-name {
                font-family: var(--font-heading);
                font-size: clamp(1.55rem, 2.5vw, 2rem);
                color: var(--primary);
                margin-bottom: 0;
                text-align: left;
                font-weight: normal;
                line-height: 1;
                max-width: 11ch;
                position: relative;
                padding-top: 20px;
            }

            .hero-name::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 46px;
                height: 2px;
                background: rgba(139, 0, 0, 0.42);
            }
            
        /* Стили для места проведения и цены */
.premiere-place {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 8px 0;
}

.premiere-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary);
    margin: 8px 0;
}

.moscow-visual-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5% var(--spacing-lg);
}

.moscow-visual {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    background: #111;
    color: inherit;
    text-decoration: none;
}

.moscow-visual img {
    display: block;
    width: 100%;
    max-height: 750px;
    object-fit: cover;
}

.moscow-visual-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    color: var(--white);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.moscow-visual-caption strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 3rem);
    font-weight: normal;
    margin-bottom: 4px;
}

.audience-quotes,
.reels-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--spacing-xl) 5%;
}

.audience-quotes {
    background:
        linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)),
        radial-gradient(circle at top left, rgba(139, 0, 0, 0.1), transparent 32%);
    border-radius: var(--radius-md);
}

.section-note {
    text-align: center;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.quotes-grid,
.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: var(--spacing-lg);
}

.audience-quote {
    background: var(--white);
    border: 1px solid rgba(139, 0, 0, 0.16);
    border-radius: var(--radius-md);
    padding: 28px;
    margin: 0;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1.55;
}

.quote-source {
    display: block;
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
}

.reviews-cta {
    margin: 28px auto 0;
    max-width: 360px;
}

.cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 760px;
    margin: 28px auto 0;
}

.final-cta-section {
    max-width: 960px;
    margin: 0 auto var(--spacing-xl);
    padding: var(--spacing-lg) 5%;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(139, 0, 0, 0.18);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.final-cta-section h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: normal;
    margin-bottom: 12px;
}

.clip-feature-section {
    max-width: 1100px;
    margin: 0 auto var(--spacing-xl);
    padding: var(--spacing-lg) 5%;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 28px;
    align-items: stretch;
}

.clip-feature-copy,
.clip-feature-card {
    background: var(--white);
    border: 1px solid rgba(139, 0, 0, 0.16);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 32px;
}

.clip-feature-kicker {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.clip-feature-copy h2,
.clip-feature-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: normal;
    line-height: 1;
}

.clip-feature-copy h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 14px;
}

.clip-feature-copy p,
.clip-feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
}

.clip-feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.clip-feature-card h3 {
    font-size: 1.8rem;
}

.clip-feature-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audience-quote::before {
    content: '“';
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 0.8;
    color: rgba(139, 0, 0, 0.35);
}

.reel-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.reel-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 325 / 646;
    height: auto;
    min-height: 0;
    border: 0;
    background: #000;
}

.reel-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 325 / 646;
    background: #000;
}

.reel-frame .vk-lazy-placeholder {
    font-size: 1rem;
}

.reel-card p {
    padding: 14px 16px 18px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.premiere-card,
.audience-quote,
.reel-card,
.moscow-visual,
.media-item {
    opacity: 0;
    transform: translateY(18px);
}

.premiere-card.visible,
.audience-quote.visible,
.reel-card.visible,
.moscow-visual.visible,
.media-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.premiere-card.visible:hover {
    transform: translateY(-4px);
}

.audience-quote.visible:hover,
.reel-card.visible:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.media-item.visible:hover {
    transform: scale(1.03);
}

/* Стили для кнопки "Купить билет" */
.ticket-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    font-weight: bold;
    border: none; /* Убедимся, что нет стандартной рамки */
    cursor: pointer; /* Курсор-палец */
    margin-top: 12px; /* Отступ сверху от цены/статуса */
    width: 100%; /* Занимает всю ширину карточки */
    text-align: center; /* Центрируем текст */
}

.ticket-btn:hover {
    background: rgb(110, 0, 0); /* Темнее при наведении */
    transform: translateY(-2px); /* Немного поднимается */
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4); /* Более сильная тень */
}

/* Стили для кнопки "Записаться в лист ожидания" */
.waitlist-btn {
    display: inline-block;
    background: transparent; /* Прозрачный фон */
    color: var(--primary); /* Красный текст */
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    font-weight: bold;
    margin-top: 12px; /* Отступ сверху от цены/статуса */
    width: 100%; /* Занимает всю ширину карточки */
    text-align: center; /* Центрируем текст */
    border: 2px solid var(--primary); /* Красная обводка */
}

.waitlist-btn:hover {
    background: var(--primary); /* Фон становится красным при наведении */
    color: var(--white); /* Текст становится белым */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}
        /* --- Галерея фото --- */
        .gallery-section {
            padding: var(--spacing-xl) 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-section .section-title {
            margin-bottom: var(--spacing-md);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 в ряду на больших экранах */
            gap: 16px; /* Расстояние между изображениями */
            justify-content: center; /* Центрирует сетку, если ширина контента меньше 1200px */
        }
        
        .gallery-item {
            width: 100%; /* Занимает всю ширину ячейки сетки */
            height: 300px; /* Фиксированная высота */
            object-fit: cover; /* Изображение обрезается, чтобы заполнить область */
            border-radius: var(--radius-sm);
            transition: var(--transition);
            cursor: default; /* Курсор по умолчанию, так как фото не открываются */
            box-shadow: var(--shadow-sm);
            aspect-ratio: auto; /* Позволяет ширине изменяться в зависимости от пропорций */
        }
        
        .gallery-item:hover {
            transform: scale(1.03); /* Лёгкое увеличение при наведении */
            box-shadow: var(--shadow-md);
        }
        
        /* --- Адаптивность для галереи --- */
        @media (max-width: 1199px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 в ряду на планшетах */
            }
        }
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr; /* 1 в ряду на мобильных */
            }
         {
                height: 300px; 
            }
        }
        
/* --- ИСПРАВЛЕННЫЙ БЛОК "СМИ о фильме" — галерея скриншотов (формат 3:4) --- */
.media-section {
    padding: var(--spacing-xl) 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.media-section .section-title {
    margin-bottom: var(--spacing-md);
}

.media-section .section-note {
    margin-bottom: var(--spacing-md);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 в ряду на десктопе */
    gap: 16px;
    justify-content: center;
}

/* Контейнер-ссылка */
.media-item {
    display: block; /* Ссылка ведёт себя как блок */
    width: 100%;
    height: 360px; /* <-- ИСПРАВЛЕНО: Высота для формата 3:4 */
    border-radius: var(--radius-sm);
    overflow: hidden; /* Обрезаем всё, что выходит за границы */
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.media-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

/* Изображение внутри ссылки */
.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Изображение заполняет контейнер, обрезая лишнее */
    display: block; /* Убирает возможные отступы */
}

/* --- Адаптивность для галереи СМИ --- */
@media (max-width: 1199px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 в ряду на планшетах */
    }

    .quotes-grid,
    .reels-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr; /* 1 в ряду на мобильных */
    }
    .media-item { /* <-- ИСПРАВЛЕНО: Уменьшаем высоту на мобильных */
        height: 300px; /* <-- Ключевая строка для мобильного вида */
    }

    .moscow-visual-caption {
        position: static;
        background: #333333;
        padding: 22px;
    }

    .cta-actions {
        grid-template-columns: 1fr;
    }

    .clip-feature-section {
        grid-template-columns: 1fr;
    }
}

/* Ближайшие показы: ровная сетка 2×2 */
.upcoming-premieres-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* Карточки ближайших премьер больше не ведут себя как большая featured-карточка */
.upcoming-premieres-grid .premiere-card.featured {
    grid-column: auto !important;
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    align-items: stretch !important;
    height: 100% !important;
    min-height: 430px;
    padding: 32px;
}

/* Верхняя текстовая часть занимает всё свободное место */
.upcoming-premieres-grid .premiere-card.featured > div:first-child {
    flex: 1 1 auto;
}

/* Блок с кнопкой всегда внизу */
.upcoming-premieres-grid .premiere-action {
    margin-top: auto !important;
    width: 100%;
}

/* Кнопка не вылезает и занимает ширину карточки */
.upcoming-premieres-grid .ticket-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Подпись под кнопкой */
.upcoming-premieres-grid .premiere-action .premiere-place {
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 10px;
}

/* Чуть компактнее текст внутри карточек */
.upcoming-premieres-grid .premiere-place {
    line-height: 1.55;
}

.upcoming-premieres-grid .premiere-meta {
    margin: 16px 0;
}

/* Планшеты: тоже 2 в ряд */
@media (max-width: 1199px) and (min-width: 769px) {
    .upcoming-premieres-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Мобильные: 1 в ряд */
@media (max-width: 768px) {
    .upcoming-premieres-grid {
        grid-template-columns: 1fr !important;
    }

    .upcoming-premieres-grid .premiere-card.featured {
        min-height: 0;
        padding: 24px;
    }
}

.upcoming-premieres-grid .premiere-date {
    min-height: 2.8em;
}

.upcoming-premieres-grid .premiere-meta {
    gap: 8px;
}

.upcoming-premieres-grid .premiere-meta span,
.upcoming-premieres-grid .premiere-place {
    font-size: 0.92rem;
}

.upcoming-premieres-grid .badge {
    align-self: flex-start;
}
