:root {
  --color-primary-blue: #195BEA;
  --color-accent-yellow: #F8BB29;
  --color-dark: #011120;
  --color-dark-header: #001327;
  --color-light-blue: #3A88FE;
  --color-white: #FFFFFF;

  --font-main: 'Montserrat', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --container-padding: 80px;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-white);
  background-color: var(--color-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 19, 39, 0.95);
  height: 93px;
  display: flex;
  align-items: center;
}

.header__container {
  padding: 0 var(--container-padding);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  height: 98px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex: 1;
}

.header__nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: var(--color-white);
  white-space: nowrap;
  transition: opacity 0.3s;
}

.header__nav-link:hover {
  opacity: 0.7;
}

.header__address {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: var(--color-white);
  white-space: nowrap;
}

.header__vdng-icon {
  width: 30px;
  height: 53px;
}

.header__mastercard {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  width: 179px;
  height: 52px;
  justify-content: center;
  flex-shrink: 0;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  background-color: var(--color-accent-yellow);
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: box-shadow 0.3s;
}

.header__cta:hover {
  box-shadow:
    0 4px 10px rgba(248, 172, 0, 0.5),
    -4px 1px 4px rgba(248, 172, 0, 0.5),
    -5px -6px 10px rgba(248, 172, 0, 0.5),
    5px -1px 10px rgba(248, 172, 0, 0.5);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 19, 39, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.header__mobile-menu.open {
  display: flex;
}

.header__mobile-menu a {
  font-family: 'Poiret One', cursive;
  font-size: 28px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.3s;
}

.header__mobile-menu a:hover {
  opacity: 0.7;
}

.header__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 64px;
  border-radius: 10px;
  background-color: var(--color-accent-yellow);
  color: var(--color-dark) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  margin-top: 16px;
}

.footer {
  position: relative;
  width: 100%;
  height: auto;
  background: #195BEA;
  overflow: hidden;
}

.footer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #001327;
  opacity: 0.8;
}

.footer__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px var(--container-padding) 0;
  height: 100%;
}

.footer__title {
  font-family: 'Poiret One', cursive;
  font-size: 70px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 40px;
}

.footer__main-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.footer__main-partner-logo {
  width: 150px;
  height: auto;
  margin-bottom: 12px;
}

.footer__main-partner-label {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--color-white);
  opacity: 0.8;
}

.footer__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.footer__partner-logo {
  height: 80px;
  width: auto;
}

.footer__partner-logo--h2d {
  position: relative;
  left: 20px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 var(--container-padding);
  margin-top: auto;
  margin-bottom: auto;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__meta {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--color-white);
  text-transform: uppercase;
}

.footer__link {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--color-white);
  text-transform: uppercase;
  text-decoration: underline;
}

.footer__tickets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__booking {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__booking-arrow {
  width: 7px;
  height: 10px;
  margin-top: 8px;
  flex-shrink: 0;
}

.footer__booking-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 193%;
  letter-spacing: 0;
  color: var(--color-white);
  font-variant: small-caps;
  text-transform: uppercase;
  text-decoration: underline;
}

.footer__booking-text a {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}

.footer__payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
}

.footer__payment-logo {
  height: 40px;
  width: auto;
}

.footer__payment-logo--visa {
  mix-blend-mode: plus-lighter;
}

.vg-calendar {
  display: none;
  position: absolute;
  z-index: 100;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 22px;
  width: 306px;
  height: 310px;
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(25, 91, 234, 0.2) 0%, rgba(25, 91, 234, 0.044) 77.08%, rgba(25, 91, 234, 0) 100%);
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 16px 19px 0px #00000017;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.vg-calendar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px;
  background: radial-gradient(80.38% 222.5% at -13.75% -12.36%, #4D7BFF 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(80.69% 208.78% at 108.28% 112.58%, #4D7BFF 0%, rgba(2, 150, 231, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.vg-calendar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.vg-calendar .ui-datepicker {
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  font-family: 'Avenir Next LT Pro', 'Montserrat', sans-serif;
}

.vg-calendar .ui-datepicker-header {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.vg-calendar .ui-datepicker-title {
  font-family: 'Avenir Next LT Pro', 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  color: var(--color-white);
  text-align: center;
  flex: 1;
}

.vg-calendar .ui-datepicker-prev,
.vg-calendar .ui-datepicker-next {
  position: absolute;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
}

.vg-calendar .ui-datepicker-prev {
  left: 0;
}

.vg-calendar .ui-datepicker-next {
  right: 0;
}

.vg-calendar .ui-datepicker-prev span,
.vg-calendar .ui-datepicker-next span {
  display: none;
}

.vg-calendar .ui-datepicker-prev::after {
  content: '\2039';
  font-size: 24px;
  color: var(--color-white);
  font-weight: 300;
}

.vg-calendar .ui-datepicker-next::after {
  content: '\203A';
  font-size: 24px;
  color: var(--color-white);
  font-weight: 300;
}

.vg-calendar .ui-datepicker-prev:hover,
.vg-calendar .ui-datepicker-next:hover {
  background: none;
  border: none;
}

.vg-calendar table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.vg-calendar th {
  font-family: 'Avenir Next LT Pro', 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  color: #B5BEC6;
  padding: 0 0 10px;
  border: none;
}

.vg-calendar td {
  padding: 0;
  border: none;
  text-align: center;
}

.vg-calendar td a,
.vg-calendar td span {
  font-family: 'Avenir Next LT Pro', 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 3px auto;
  border-radius: 29px;
  border: none;
  background: none;
  text-decoration: none;
}

.vg-calendar td a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.vg-calendar td a.ui-state-highlight {
  background: #0A1E64;
  color: var(--color-white);
  border: none;
}

.vg-calendar td a.ui-state-active {
  background: none;
  color: var(--color-white);
  border: none;
}

.vg-calendar td.ui-datepicker-unselectable span {
  color: rgba(255, 255, 255, 0.2);
}

.vg-calendar td.ui-datepicker-other-month {
  opacity: 0;
  pointer-events: none;
}

.vg-calendar .ui-state-default {
  border: none;
  background: none;
}

.vg-calendar .ui-widget-header {
  border: none;
  background: none;
}

.vg-timepicker {
  display: none;
  position: absolute;
  z-index: 100;
  box-sizing: border-box;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  width: 306px;
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(25, 91, 234, 0.2) 0%, rgba(25, 91, 234, 0.044) 77.08%, rgba(25, 91, 234, 0) 100%);
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 16px 19px 0px #00000017;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.vg-timepicker::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px;
  background: radial-gradient(80.38% 222.5% at -13.75% -12.36%, #4D7BFF 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(80.69% 208.78% at 108.28% 112.58%, #4D7BFF 0%, rgba(2, 150, 231, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.vg-timepicker__back {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.vg-timepicker__back:hover {
  color: var(--color-white);
}

.vg-timepicker__date {
  font-family: 'Avenir Next LT Pro', 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: var(--color-white);
  margin-top: 8px;
  margin-bottom: 12px;
}

.vg-timepicker__slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.vg-time-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-family: 'Avenir Next LT Pro', 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.vg-time-slot:hover {
  background: rgba(255, 255, 255, 0.2);
}

.vg-time-slot--disabled {
  color: rgba(255, 255, 255, 0.2);
  cursor: default;
  pointer-events: none;
}

.slot--sold-out {
  color: transparent !important;
  background-image: url('/catalog/view/theme/digitalticket/img/immersive/sold_out_slot.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  user-select: none;
}
.slot--sold-out * { visibility: hidden; }

.vg-calendar td.day--sold-out {
  background-image: url('/catalog/view/theme/digitalticket/img/immersive/sold_out.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  pointer-events: none;
  cursor: not-allowed;
  user-select: none;
}
.vg-calendar td.day--sold-out span,
.vg-calendar td.day--sold-out a {
  color: transparent !important;
  visibility: hidden;
}

@media (min-width: 1441px) {

  .header__container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  .scene1__inner {
    padding-left: calc((100vw - 1440px) / 2 + var(--container-padding));
    padding-right: calc((100vw - 1440px) / 2 + var(--container-padding));
  }

  .scene1__bottom {
    padding-left: calc((100vw - 1440px) / 2 + var(--container-padding));
    padding-right: calc((100vw - 1440px) / 2 + var(--container-padding));
  }

  .scene2 {
    padding-left: calc((100vw - 1440px) / 2 + var(--container-padding));
    padding-right: calc((100vw - 1440px) / 2 + var(--container-padding));
  }

  .scene4__inner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  .scene6__inner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  .scene5__inner {
    padding-left: calc((100vw - 1440px) / 2 + var(--container-padding));
    padding-right: calc((100vw - 1440px) / 2 + var(--container-padding));
  }

  .scene7__inner {
    padding-left: calc((100vw - 1440px) / 2 + var(--container-padding));
    padding-right: calc((100vw - 1440px) / 2 + var(--container-padding));
  }

  .scene8__inner {
    padding-left: calc((100vw - 1440px) / 2 + var(--container-padding));
    padding-right: calc((100vw - 1440px) / 2 + var(--container-padding));
  }
  .scene8__sunflowers { left: calc((100vw - 1440px) / 2 - 893px); }

  .footer__inner {
    padding-left: calc((100vw - 1440px) / 2 + var(--container-padding));
    padding-right: calc((100vw - 1440px) / 2 + var(--container-padding));
  }

  .scene3__image {
    transform: scale(1.25);
  }

  .scene5__bg {
    transform: scale(1.4);
  }

  .scene2__heading { left: -50vw; }
  .scene2__schedule { left: -50vw; }
  .scene2__location { left: -50vw; }
  .scene2__photo { left: 50vw; }
  .scene2__mazok { left: 50vw; }

  .scene4__header { left: -50vw; }
  .scene4__subtitle { transform: translateX(40vw); }
  .scene4__card--1 { transform: translateX(-55vw); }
  .scene4__card--2 { transform: translateX(60vw); }
  .scene4__card--3 { transform: translateX(55vw); }
  .scene4__label--1 { transform: translateX(30vw); }
  .scene4__label--2 { transform: translateX(-45vw); }
  .scene4__label--3 { transform: translateX(65vw); }
  .scene4__side { transform: translateX(70vw); }

  .scene6__img--1 { transform: translateX(calc(-100% - 50vw)); }
  .scene6__img--2 { transform: translateX(calc(100% + 50vw)); }
  .scene6__img--3 { transform: translateX(calc(-100% - 50vw)); }
  .scene6__img--4 { transform: translateX(calc(-100% - 50vw)); }
  .scene6__img--5 { transform: translateX(calc(100% + 50vw)); }
  .scene6__img--6 { transform: translateX(calc(-100% - 50vw)); }
  .scene6__img--7 { transform: translateX(calc(100% + 50vw)); }
  .scene6__img--8 { transform: translateX(calc(-100% - 50vw)); }

  .scene7__title { transform: translateX(-50vw); }
  .scene7__subtitle { transform: translateX(50vw); }
  .scene8__title { transform: translateX(-50vw); }
  .scene8__title-note { transform: translateX(50vw); }
  .scene8__plashka { transform: translateX(50vw); }
  .scene8__rules { transform: translateX(50vw); }
}

@media (max-width: 1440px) {
  .scene1__subtitle { font-size: 22px; }
  .scene1__bottom { padding-bottom: 120px; }
  .header__nav-link { font-size: 14px; white-space: normal; max-width: 100px; text-align: center; line-height: 120%; }
  .header__address { font-size: 14px; }
  .header__container { gap: 24px; padding: 0 40px; }

  .scene4__title { font-size: 55px; line-height: 58px; }
  .scene4__subtitle { font-size: 24px; }
  .scene4__inner {
    --scene4-card1-width: 270px;
    --scene4-card1-height: 270px;
    --scene4-card2-width: 260px;
    --scene4-card2-left: 20%;
    --scene4-card2-top: 560px;
    --scene4-card3-left: 55%;
    --scene4-label1-width: 160px;
  }
  .scene4__card--2 { height: 200px; }
  .scene4__card--3 { width: 260px; height: 320px; }
  .scene4__card-title { font-size: 28px; }
  .scene4__card-desc { font-size: 16px; }
  .scene4__side-text { font-size: 28px; }
  .scene4__side { width: 200px; }

  .scene5__title { font-size: 60px; }
  .scene5__right { padding-left: 60px; margin-left: 40px; }
  .scene5__inner { padding-left: 40px; padding-right: 20px; }
  .scene5__mazok { left: -300px; }

  .scene7__card { width: auto; height: auto; min-height: 200px; padding: 18px 24px 24px; }
  .scene7__title { font-size: 55px; }
  .scene7__subtitle { font-size: 24px; }
  .scene7__icon { width: 50px; height: 50px; }
  .scene7__name { font-size: 14px; }
  .scene7__review { font-size: 14px; }

  .scene6__img--5 { width: 500px; height: 353px; }

  .scene8__sunflowers { width: 1000px; height: auto; top: -300px; left: -42%; }
  .scene8__table { width: 100%; }
  .scene8__col { font-size: 18px; }
  .scene8__ticket-name { font-size: 18px; }
  .scene8__col--category { width: 250px; }
}

@media (max-width: 1024px) {
  :root {
    --container-padding: 40px;
  }

  .header { height: 70px; }
  .header__logo img { height: 70px; }
  .header__nav-link { font-size: 13px; white-space: normal; max-width: 80px; text-align: center; line-height: 120%; }
  .header__address { font-size: 12px; }
  .header__container { gap: 12px; }
  .header__vdng-icon { width: 20px; height: 36px; }
  .header__cta { width: 140px; height: 40px; font-size: 12px; padding: 8px 16px; }
  .header__mastercard { height: 32px; }

  .scene1 { height: 820px; }
  .scene1__inner { padding-top: 80px; }
  .scene1__content { width: 55%; }
  .scene1__portrait { width: 45%; margin-left: 5%; }
  .scene1__title-img { width: 100%; }
  .scene1__subtitle { font-size: 24px; }
  .scene1__clip--subtitle { margin-bottom: 60px; margin-top: -60px; }
  .scene1__clip--tagline { margin-bottom: 32px; }
  .scene1__cta { width: 240px; height: 70px; font-size: 18px; }
  .scene1__bottom { padding-bottom: 100px; }
  .scene1__bottom-left { width: 55%; }

  .scene2__heading { font-size: 50px; line-height: 54px; }
  .scene2__heading span { font-size: 64px; }
  .scene2__label { font-size: 24px; }
  .scene2__detail { font-size: 18px; }
  .scene2__photo { width: 100%; height: auto; }
  .scene2__cta { width: 240px; height: 70px; font-size: 18px; }
  .scene2__mazok { width: 700px; left: 120%; top: -15%; }

  .scene3__image-wrapper { height: 550px; }

  .scene4 { height: 884px; }
  .scene4__title { font-size: 42px; line-height: 46px; }
  .scene4__subtitle { font-size: 20px; }
  .scene4__inner {
    --scene4-card1-width: 220px;
    --scene4-card1-height: 220px;
    --scene4-card1-top: 180px;
    --scene4-card2-width: 210px;
    --scene4-card2-left: 12%;
    --scene4-card2-top: 530px;
    --scene4-card3-left: 63%;
    --scene4-label1-width: 140px;
  }
  .scene4__card--2 { height: 180px; }
  .scene4__card--3 { width: 210px; height: 260px; top: 180px; }
  .scene4__label--3 { top: 620px; left: calc(12% + 210px + 54px) !important; }
  .scene4__card-btn { width: 32px; height: 32px; bottom: 8px; right: 8px; }
  .scene4__card-tooltip { height: 32px; font-size: 13px; padding: 0 12px; bottom: 8px; right: 8px; max-width: 32px; }
  .scene4__card-tooltip.active { max-width: 300px; }
  .scene4__card-title { font-size: 24px; }
  .scene4__card-desc { font-size: 14px; }
  .scene4__side-text { font-size: 24px; }
  .scene4__side { width: 180px; }
  .scene4__mazok { display: none; }

  .scene5 { height: auto; min-height: 650px; }
  .scene5__title { font-size: 50px; }
  .scene5__right { padding-left: 40px; margin-left: 20px; gap: 28px; }
  .scene5__text { font-size: 16px; }
  .scene5__mazok { display: none; }

  .scene6 { height: 2000px; }
  .scene6__img--1 { width: 200px; height: 266px; }
  .scene6__img--2 { width: 400px; height: 266px; }
  .scene6__img--3 { width: 230px; height: 288px; }
  .scene6__img--4 { width: 200px; height: 250px; }
  .scene6__img--5 { width: 430px; height: 304px; }
  .scene6__img--6 { width: 390px; height: 293px; }
  .scene6__img--7 { width: 430px; height: 286px; }
  .scene6__img--8 { width: 390px; height: 260px; }
  .scene6__mazok { width: 500px; }
  .scene6__mazok--1 { width: 600px; }
  .scene6__mazok--3 { width: 750px; top: 1180px; right: calc(8% - 180px); }

  .scene7 { height: auto; min-height: 580px; }
  .scene7__title { font-size: 50px; }
  .scene7__subtitle { font-size: 24px; margin-bottom: 40px; }
  .scene7__card { width: auto; height: auto; min-height: 200px; }
  .scene7__icon { width: 50px; height: 50px; }

  .scene8 { height: auto; min-height: 800px; }
  .scene8__inner { padding-top: 80px; }
  .scene8__title { font-size: 50px; }
  .scene8__title-note { font-size: 30px; }
  .scene8__table { width: 100%; }
  .scene8__col--category { width: 200px; }
  .scene8__col--price { width: auto; flex: 1; }
  .scene8__col { font-size: 18px; }
  .scene8__ticket-name { font-size: 18px; }
  .scene8__sunflowers { width: 1000px; height: auto; top: -260px; left: -60%; }
  .scene8__inner { padding-bottom: 100px; }
  .scene8__cta { width: 282px !important; height: 85px !important; font-size: 18px; transition: box-shadow 0.3s !important; }
  .scene8:hover .scene8__cta { width: 282px !important; height: 85px !important; }

  .footer { height: auto; min-height: auto; }
  .footer__inner { padding-bottom: 60px; }
  .footer__title { font-size: 50px; }
  .footer__partners { gap: 40px; flex-wrap: wrap; justify-content: center; max-width: 300px; margin-bottom: 40px; }
  .footer__partner-logo { height: 60px; }
  .footer__meta,
  .footer__link { font-size: 13px; }
  .footer__booking-text { font-size: 13px; }
  .footer__content { gap: 20px; }
  .footer__payment { margin-top: 30px; }

  .scene2:hover .scene2__heading,
  .scene2:hover .scene2__schedule,
  .scene2:hover .scene2__location { left: unset; }
  .scene2:hover .scene2__photo { left: unset; }
  .scene2:hover .scene2__mazok { left: unset; }

  .scene4:hover .scene4__header { left: unset; }
  .scene4:hover .scene4__subtitle,
  .scene4:hover .scene4__card--1,
  .scene4:hover .scene4__card--2,
  .scene4:hover .scene4__card--3,
  .scene4:hover .scene4__label--1,
  .scene4:hover .scene4__label--2,
  .scene4:hover .scene4__label--3,
  .scene4:hover .scene4__side { transform: unset; }

  .scene5:hover .scene5__bg { transform: unset; }

  .scene6:hover .scene6__img { transform: unset; }

  .scene7:hover .scene7__title,
  .scene7:hover .scene7__subtitle { transform: unset; }

  .scene8:hover .scene8__title,
  .scene8:hover .scene8__title-note,
  .scene8:hover .scene8__plashka,
  .scene8:hover .scene8__rules { transform: unset; }
  .scene8:hover .scene8__cta { width: 282px !important; height: 85px !important; }

  .scene3__image-wrapper:hover .scene3__image { transform: unset; }

  .scene2__heading { left: -60%; }
  .scene2__schedule { left: -30%; }
  .scene2__location { left: -50%; }
  .scene2__photo { left: 200px; }

  .scene4__header { left: -40%; }
  .scene4__subtitle { transform: translateX(60%); }
  .scene4__card--1 { transform: translateX(-200px); }
  .scene4__card--2 { transform: translateX(200%); }
  .scene4__card--3 { transform: translateX(150%); }
  .scene4__label--1 { transform: translateX(120%); }
  .scene4__label--2 { transform: translateX(-200px); }
  .scene4__label--3 { transform: translateX(200%); }
  .scene4__side { transform: translateX(250%); }

  .scene6__img--1 { transform: translateX(calc(-100% - 80px)); }
  .scene6__img--2 { transform: translateX(calc(100% + 150px)); }
  .scene6__img--3 { transform: translateX(calc(-100% - 150px)); }
  .scene6__img--4 { transform: translateX(calc(-100% - 80px)); }
  .scene6__img--5 { transform: translateX(calc(100% + 120px)); }
  .scene6__img--6 { transform: translateX(calc(-100% - 100px)); }
  .scene6__img--7 { transform: translateX(calc(100% + 120px)); }
  .scene6__img--8 { transform: translateX(calc(-100% - 80px)); }

  .scene7__title { transform: translateX(-200%); }
  .scene7__subtitle { transform: translateX(150%); }
  .scene8__title { transform: translateX(-150%); }
  .scene8__title-note { transform: translateX(300%); }
  .scene8__plashka { transform: translateX(300%); }
  .scene8__rules { transform: translateX(300%); }

  .scene3__image { transform: scale(1.4); }
  .scene5__bg { transform: scale(1.5); }

  .scene2.in-view .scene2__heading { left: 0; }
  .scene2.in-view .scene2__schedule { left: 0; }
  .scene2.in-view .scene2__location { left: 0; }
  .scene2.in-view .scene2__photo { left: 30px; }
  .scene2.in-view .scene2__mazok { left: -15%; }

  .scene3.in-view .scene3__image { transform: scale(1); }

  .scene4.in-view .scene4__header { left: 0; }
  .scene4.in-view .scene4__subtitle { transform: translateX(0); }
  .scene4.in-view .scene4__card--1,
  .scene4.in-view .scene4__card--2,
  .scene4.in-view .scene4__card--3,
  .scene4.in-view .scene4__label--1,
  .scene4.in-view .scene4__label--2,
  .scene4.in-view .scene4__label--3,
  .scene4.in-view .scene4__side { transform: translateX(0); }

  .scene5.in-view .scene5__bg { transform: scale(1); }

  .scene6.in-view .scene6__img { transform: translateX(0); }

  .scene7.in-view .scene7__title { transform: translateX(0); }
  .scene7.in-view .scene7__subtitle { transform: translateX(0); }

  .scene8.in-view .scene8__title { transform: translateX(0); }
  .scene8.in-view .scene8__title-note { transform: translateX(0); }
  .scene8.in-view .scene8__plashka { transform: translateX(0); }
  .scene8.in-view .scene8__rules { transform: translateX(0); }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 24px;
  }

  .header { height: 60px; }
  .header__logo img { height: 60px; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }
  .header__container { justify-content: space-between; }
  .header__mastercard { height: 28px; }

  .scene1 { height: auto; min-height: max(70svh, 550px); }
  .scene1__inner {
    flex-direction: column;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 40px;
  }
  .scene1__content { width: 100%; align-items: center; text-align: center; }
  .scene1__portrait { display: none; }
  .scene1__subtitle { font-size: 20px; }
  .scene1__clip--subtitle { margin-bottom: 40px; margin-top: -40px; }
  .scene1__clip--tagline { margin-bottom: 24px; }
  .scene1__title-img { width: 80%; display: block; margin: 0 auto; }
  .scene1__cta { width: 220px; height: 60px; font-size: 16px; }
  .scene1__bottom { padding-bottom: 130px; }
  .scene1__bottom-left { width: 100%; justify-content: center; }

  .scene2 { padding-top: 40px; padding-bottom: 60px; }
  .scene2__heading { font-size: 36px; line-height: 40px; padding-left: 0; }
  .scene2__heading span { font-size: 48px; }
  .scene2__inner { flex-direction: column; gap: 30px; }
  .scene2__text { width: 100%; padding-left: 0; }
  .scene2__gallery { width: 100%; }
  .scene2__photo { width: 100%; height: auto; left: 0 !important; }
  .scene2__label { font-size: 22px; }
  .scene2__detail { font-size: 16px; padding-left: 36px; }
  .scene2__cta { width: 220px; height: 60px; font-size: 16px; align-self: center; }
  .scene2__mazok { display: none; }

  .scene2__heading { left: -40%; }
  .scene2__schedule { left: -25%; }
  .scene2__location { left: -35%; }

  .scene3__image-wrapper { height: 400px; }
  .scene3__image { transform: scale(1.3); }

  .scene4 { height: auto; min-height: auto; padding-bottom: 40px; }
  .scene4__inner {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .scene4__header { position: static; left: 0 !important; }
  .scene4__subtitle { position: static; transform: none !important; margin-bottom: 16px; }
  .scene4__title { font-size: 40px; line-height: 44px; }
  .scene4__subtitle { font-size: 20px; }

  .scene4__card {
    position: static !important;
    width: 100% !important;
    max-width: 400px;
    height: 280px !important;
    border-radius: 12px;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
  }

  .scene4.in-view .scene4__card {
    transform: translateY(0) !important;
    opacity: 1;
  }

  .scene4__label {
    position: static !important;
    text-align: center;
    align-items: center;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  }

  .scene4.in-view .scene4__label {
    transform: translateY(0) !important;
    opacity: 1;
  }

  .scene4__card--1 { order: 1; }
  .scene4__label--2 { order: 2; }
  .scene4__card--3 { order: 3; transition-delay: 0.15s; }
  .scene4__label--1 { order: 4; transition-delay: 0.15s; }
  .scene4__card--2 { order: 5; transition-delay: 0.3s; }
  .scene4__label--3 { order: 6; transition-delay: 0.3s; }
  .scene4__label .scene4__card-arrow {
    position: static;
    display: none;
  }
  .scene4__card-btn { width: 30px; height: 30px; bottom: 8px; right: 8px; }
  .scene4__card-tooltip { height: 30px; font-size: 12px; padding: 0 10px; bottom: 8px; right: 8px; max-width: 30px; }
  .scene4__card-tooltip.active { max-width: 250px; }
  .scene4__card-title { font-size: 24px; }
  .scene4__card-desc { font-size: 16px; }

  .scene4__side {
    position: static !important;
    width: 100%;
    max-width: 400px;
    text-align: center;
    order: 7;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease-out 0.4s, opacity 0.8s ease-out 0.4s;
  }

  .scene4.in-view .scene4__side {
    transform: translateY(0) !important;
    opacity: 1;
  }
  .scene4__side-text { font-size: 24px; }
  .scene4__mazok { display: none; }

  .scene5 { height: auto; min-height: 500px; }
  .scene5__inner {
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 50px;
    height: auto;
  }
  .scene5__left { width: 100%; padding-left: 0; margin-bottom: 30px; }
  .scene5__title { font-size: 44px; }
  .scene5__right { width: 100%; padding-left: 0; margin-left: 0; gap: 24px; }
  .scene5__text { font-size: 16px; }
  .scene5__bg { transform: scale(1.3); }

  .scene6 { height: auto; }
  .scene6__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 40px var(--container-padding);
    height: auto;
  }
  .scene6__img {
    position: static !important;
    width: 100% !important;
    height: 250px !important;
    transform: none !important;
    border-radius: 8px;
  }
  .scene6__mazok { display: none; }

  .scene6__img {
    transform: translateY(40px) !important;
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
  }
  .scene6__img--2,
  .scene6__img--4,
  .scene6__img--6,
  .scene6__img--8 { transition-delay: 0.15s; }

  .scene6.in-view .scene6__img {
    transform: translateY(0) !important;
    opacity: 1;
  }

  .scene7 { height: auto; min-height: auto; }
  .scene7__inner { padding-top: 40px; padding-bottom: 40px; }
  .scene7__title { font-size: 40px; }
  .scene7__subtitle { font-size: 20px; margin-bottom: 30px; }
  .scene7__slider { display: block; }
  .scene7__cards {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .scene7__cards::-webkit-scrollbar { display: none; }
  .scene7__card {
    flex: 0 0 85%;
    max-width: 85%;
    height: auto;
    min-height: auto;
    scroll-snap-align: center;
  }

  .scene7__title { transform: translateX(-120%); }
  .scene7__subtitle { transform: translateX(100%); }
  .scene8__title { transform: translateX(-100%); }
  .scene8__title-note { transform: translateX(200%); }
  .scene8__plashka { transform: translateX(200%); }
  .scene8__rules { transform: translateX(200%); }

  .scene8 { height: auto; }
  .scene8__inner { padding-top: 60px; padding-bottom: 130px; }
  .scene8__heading { margin-bottom: 30px; }
  .scene8__title { font-size: 40px; }
  .scene8__title-note { font-size: 24px; }
  .scene8__table { width: 100%; max-width: 600px; margin: 0 auto; }
  .scene8__col--category { width: 140px; }
  .scene8__col--price { flex: 1; text-align: center; }
  .scene8__col { font-size: 16px; }
  .scene8__ticket-name { font-size: 16px; }
  .scene8__ticket-desc { font-size: 12px; }
  .scene8__row { padding: 20px 0; }
  .scene8__sunflowers { display: none; }
  .scene8__cta { width: 220px; height: 60px; font-size: 16px; }

  .footer { height: auto; min-height: auto; }
  .footer__inner { padding-top: 80px; padding-bottom: 40px; }
  .footer__title { font-size: 40px; margin-bottom: 30px; }
  .footer__main-partner-logo { width: 100px; }
  .footer__partners { gap: 40px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
  .footer__partner-logo { height: 50px; }
  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    padding: 0;
  }
  .footer__contacts { align-items: center; }
  .footer__tickets { align-items: center; }
  .footer__booking { justify-content: center; }
  .footer__booking-arrow { display: none; }
  .footer__payment { margin-top: 50px; }

  .vg-calendar,
  .vg-timepicker {
    position: fixed;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

  .header { height: 56px; }
  .header__logo img { height: 50px; }
  .header__mastercard { height: 24px; }

  .scene1 { min-height: max(70svh, 550px); }
  .scene1__inner { padding-top: 100px; }
  .scene1__subtitle { font-size: 16px; }
  .scene1__clip--subtitle { margin-bottom: 24px; margin-top: -24px; }
  .scene1__title-img { width: 100%; }
  .scene1__cta { width: 100%; max-width: 280px; height: 56px; font-size: 16px; }
  .scene1__bottom { padding-bottom: 100px; }

  .scene2 { padding-top: 30px; padding-bottom: 40px; }
  .scene2__heading { font-size: 28px; line-height: 32px; margin-bottom: 30px; }
  .scene2__heading span { font-size: 36px; }
  .scene2__label { font-size: 20px; }
  .scene2__detail { font-size: 14px; padding-left: 30px; }
  .scene2__cta { width: 100%; max-width: 280px; height: 56px; font-size: 16px; align-self: center; }

  .scene2__heading { left: -30%; }
  .scene2__schedule { left: -20%; }
  .scene2__location { left: -25%; }

  .scene3__image-wrapper { height: 280px; }
  .scene3__image { transform: scale(1.2); }

  .scene4__title { font-size: 32px; line-height: 36px; }
  .scene4__subtitle { font-size: 18px; }
  .scene4__card { max-width: 100%; height: 220px !important; }
  .scene4__card-title { font-size: 22px; }
  .scene4__card-desc { font-size: 14px; }
  .scene4__side-text { font-size: 20px; }

  .scene5__title { font-size: 32px; }
  .scene5__text { font-size: 15px; }
  .scene5__inner { padding-top: 30px; padding-bottom: 30px; }

  .scene6__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px var(--container-padding);
  }
  .scene6__img { height: 200px !important; }

  .scene7__inner { padding-top: 30px; padding-bottom: 30px; }
  .scene7__title { font-size: 32px; }
  .scene7__subtitle { font-size: 16px; margin-bottom: 20px; }
  .scene7__card { padding: 16px 20px 20px; }
  .scene7__icon { width: 40px; height: 40px; }
  .scene7__name { font-size: 14px; }
  .scene7__review { font-size: 14px; }

  .scene7__title { transform: translateX(-80%); }
  .scene7__subtitle { transform: translateX(60%); }
  .scene8__title { transform: translateX(-60%); }
  .scene8__title-note { transform: translateX(120%); }
  .scene8__plashka { transform: translateX(120%); }
  .scene8__rules { transform: translateX(120%); }

  .scene8__inner { padding-top: 40px; padding-bottom: 150px; }
  .scene8__heading { margin-bottom: 20px; flex-wrap: wrap; justify-content: center; }
  .scene8__title { font-size: 30px; }
  .scene8__title-note { font-size: 20px; }
  .scene8__col--category { width: 120px; min-width: 0; flex-shrink: 0; }
  .scene8__col--price { width: auto; flex: 1; min-width: 0; }
  .scene8__col { font-size: 14px; }
  .scene8__ticket-name { font-size: 14px; }
  .scene8__ticket-desc { font-size: 11px; }
  .scene8__time { font-size: 12px; }
  .scene8__row { padding: 16px 0; flex-wrap: wrap; gap: 8px; }
  .scene8__cta {
    width: 280px !important;
    max-width: 280px !important;
    height: 56px !important;
    font-size: 16px;
    transition: box-shadow 0.3s !important;
  }
  .scene8:hover .scene8__cta,
  .scene8__cta:hover,
  .scene8__cta:active,
  .scene8__cta:focus {
    width: 280px !important;
    max-width: 280px !important;
    height: 56px !important;
  }

  .footer__inner { padding-top: 60px; padding-bottom: 50px; }
  .footer__title { font-size: 30px; margin-bottom: 20px; }
  .footer__main-partner-logo { width: 80px; }
  .footer__main-partner { margin-bottom: 16px; }
  .footer__partners { gap: 10px; flex-direction: column; align-items: center; max-width: none; margin-bottom: 40px; }
  .footer__partner-logo { height: 65px; }
  .footer__partner-logo--h2d { left: 0; }
  .footer__content { gap: 24px; }
  .footer__meta,
  .footer__link { font-size: 14px; }
  .footer__booking-text { font-size: 14px; }
  .footer__payment { margin-top: 30px; margin-bottom: 20px; }
  .footer__payment-logo { height: 30px; }
}