.scene1 {
  position: relative;
  width: 100%;
  height: 975px;
  overflow: hidden;
}

.scene1__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.scene1__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, transparent, rgba(1, 17, 32, 0.85));
  z-index: 2;
}

.scene1__inner {
  position: relative;
  z-index: 3;
  padding: 0 var(--container-padding);
  padding-top: 80px;
  height: 100%;
  display: flex;
  align-items: center;
}

.scene1__content {
  width: 45%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scene1__clip {
  overflow: hidden;
}

.scene1__clip--subtitle {
  margin-bottom: 100px;
  margin-top: -100px;
}

.scene1__clip--title {
  margin-bottom: 16px;
}

.scene1__clip--tagline {
  margin-bottom: 48px;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.scene1__portrait {
  width: 55%;
  flex-shrink: 0;
  margin-left: 10%;
}

.scene1__portrait img {
  width: 100%;
  height: auto;
}

.scene1__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: var(--color-white);
  animation: slideUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.scene1__title {
  animation: slideUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.scene1__title-img {
  width: 580px;
  height: auto;
}

.scene1__tagline {
  animation: slideUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.3s both;
}

.scene1__tagline img {
  width: 100%;
  height: auto;
}

.scene1__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 282px;
  height: 85px;
  border-radius: 10px;
  background-color: var(--color-accent-yellow);
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: box-shadow 0.3s;
}

.scene1__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  padding: 0 var(--container-padding);
  padding-bottom: 80px;
}

.scene1__bottom-left {
  width: 45%;
  display: flex;
  justify-content: center;
}

.scene1__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);
}

.scene2__gradient-top {
  height: 98px;
  margin-top: -98px;
  position: relative;
  z-index: 5;
  background: linear-gradient(360deg, #195BEA 0%, rgba(25, 91, 234, 0) 100%);
}

.scene2 {
  background-color: var(--color-primary-blue);
  padding: 60px var(--container-padding) 80px;
  overflow: hidden;
}

.scene2__heading {
  font-family: 'Poiret One', cursive;
  font-size: 70px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0.03em;
  color: var(--color-white);
  margin-bottom: 48px;
  padding-left: 5%;
  position: relative;
  left: -100%;
  transition: left 2s cubic-bezier(0.3, 0.3, 0.3, 1);
}

.scene2:hover .scene2__heading {
  left: 0;
}

.scene2__heading span {
  font-size: 88px;
}

.scene2__inner {
  display: flex;
  gap: 40px;
}

.scene2__text {
  width: 40%;
  display: flex;
  flex-direction: column;
  padding-left: 5%;
}

.scene2__block {
  margin-bottom: 28px;
}

.scene2__schedule {
  position: relative;
  left: -50%;
  transition: left 2s cubic-bezier(0.3, 0.3, 0.3, 1);
}

.scene2__location {
  position: relative;
  left: -79%;
  transition: left 2s cubic-bezier(0.3, 0.3, 0.3, 1);
}

.scene2__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}

.scene2__icon--calendar {
  width: 31px;
  height: 34px;
}

.scene2__icon--location {
  width: 24px;
  height: 34px;
}

.scene2__label {
  font-family: 'Poiret One', cursive;
  font-size: 30px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: var(--color-white);
  margin-bottom: 8px;
}

.scene2__detail {
  font-family: 'Poiret One', cursive;
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.03em;
  color: var(--color-white);
  opacity: 0.8;
  padding-left: 43px;
}

.scene2__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 282px;
  height: 85px;
  border-radius: 10px;
  background-color: var(--color-accent-yellow);
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 35px;
  transition: box-shadow 0.3s;
}

.scene2__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);
}

.scene2__gallery {
  width: 60%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.scene2__mazok {
  position: absolute;
  top: -55%;
  left: 150%;
  width: 1172px;
  height: auto;
  max-width: none;
  mix-blend-mode: soft-light;
  transition: left 2s cubic-bezier(0.3, 0.3, 0.3, 1);
}

.scene2:hover .scene2__mazok {
  left: -15%;
}

.scene2__photo {
  position: relative;
  width: 617px;
  height: 465px;
  object-fit: cover;
  border-radius: 8px;
  z-index: 1;
  left: 456px;
  transition: left 2s cubic-bezier(0.3, 0.3, 0.3, 1);
}

.scene2:hover .scene2__photo {
  left: 30px;
}

.scene2:hover .scene2__schedule {
  left: 0;
}

.scene2:hover .scene2__location {
  left: 0;
}

.scene3 {
  width: 100%;
}

.scene3__image-wrapper {
  width: 100%;
  height: 756px;
  overflow: hidden;
}

.scene3__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.55);
  transform-origin: top center;
  transition: transform 2000ms ease-out;
}

.scene3__image-wrapper:hover .scene3__image {
  transform: scale(1);
}

.scene4 {
  position: relative;
  width: 100%;
  height: 884px;
  background-color: var(--color-primary-blue);
  overflow: hidden;
}

.scene4__inner {
  --scene4-gap: 32px;
  --scene4-arrow-offset: 22px;
  --scene4-label1-width: 176px;
  --scene4-card1-left: 5.56%;
  --scene4-card1-top: 180px;
  --scene4-card1-width: 320px;
  --scene4-card1-height: 320px;
  --scene4-card2-left: 25.69%;
  --scene4-card2-top: 520px;
  --scene4-card2-width: 308px;
  --scene4-card3-left: 50%;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 60px var(--container-padding);
}

.scene4__header {
  display: flex;
  align-items: baseline;
  gap: 60px;
  margin-bottom: 40px;
  position: relative;
  left: -60%;
  transition: left 2s cubic-bezier(0.25, 0.1, 0.1, 1);
}

.scene4:hover .scene4__header {
  left: 0;
}

.scene4__title {
  font-family: 'Poiret One', cursive;
  font-size: 70px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.scene4__subtitle {
  position: absolute;
  top: 78px;
  right: 5.56%;
  font-family: 'Poiret One', cursive;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-white);
  transform: translateX(100%);
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.1, 1);
}

.scene4:hover .scene4__subtitle {
  transform: translateX(0);
}

.scene4__card {
  position: absolute;
  overflow: hidden;
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.1, 1);
}

.scene4__card > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene4__card-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s;
}

.scene4__card-tooltip {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: #f8bb29;
  color: var(--color-dark);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  height: 40px;
  padding: 0 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  max-width: 40px;
  opacity: 0;
  pointer-events: none;
  transition: max-width 0.4s ease, opacity 0.3s;
  z-index: 3;
}

.scene4__card-btn:hover + .scene4__card-tooltip,
.scene4__card-tooltip.active {
  opacity: 1;
  max-width: 400px;
}

.scene4__card-btn:hover,
.scene4__card-btn.active {
  opacity: 0;
}

.scene4__card--1 {
  top: var(--scene4-card1-top);
  left: var(--scene4-card1-left);
  width: var(--scene4-card1-width);
  height: var(--scene4-card1-height);
  transform: translateX(-600px);
}

.scene4:hover .scene4__card--1 {
  transform: translateX(0);
}

.scene4__card--2 {
  top: var(--scene4-card2-top);
  left: var(--scene4-card2-left);
  width: var(--scene4-card2-width);
  height: 230px;
  transform: translateX(400%);
}

.scene4:hover .scene4__card--2 {
  transform: translateX(0);
}

.scene4__card--3 {
  top: 190px;
  left: var(--scene4-card3-left);
  width: 300px;
  height: 370px;
  transform: translateX(250%);
}

.scene4:hover .scene4__card--3 {
  transform: translateX(0);
}

.scene4__label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.1, 1);
}

.scene4__label-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.scene4__label--1 {
  top: 315px;
  left: calc(
    var(--scene4-card3-left) - var(--scene4-label1-width) - var(--scene4-gap) - var(--scene4-arrow-offset)
  );
  width: var(--scene4-label1-width);
  z-index: 2;
  transform: translateX(200%);
}

.scene4:hover .scene4__label--1 {
  transform: translateX(0);
}

.scene4__label--2 {
  top: calc(var(--scene4-card1-top) + var(--scene4-card1-height) + 24px);
  left: var(--scene4-card1-left);
  transform: translateX(-400px);
}

.scene4:hover .scene4__label--2 {
  transform: translateX(0);
}

.scene4__label--3 {
  top: 600px;
  left: calc(
    var(--scene4-card2-left) + var(--scene4-card2-width) + var(--scene4-gap) + var(--scene4-arrow-offset)
  );
  transform: translateX(450%);
}

.scene4:hover .scene4__label--3 {
  transform: translateX(0);
}

.scene4__card-title {
  font-family: 'Poiret One', cursive;
  font-size: 35px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 92%;
  letter-spacing: 0.03em;
}

.scene4__card-desc {
  font-family: 'Poiret One', cursive;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.7;
  line-height: 130%;
  letter-spacing: 0.03em;
}

.scene4__card-arrow {
  font-size: 14px;
  color: var(--color-white);
}

.scene4__label--1 .scene4__label-row {
  position: relative;
}

.scene4__label--1 .scene4__card-arrow {
  position: absolute;
  top: 8px;
  left: calc(100% + 8px);
  line-height: 1;
}

.scene4__label--3 {
  position: absolute;
}

.scene4__label--3 .scene4__card-arrow {
  position: absolute;
  top: 6px;
  left: calc(-1 * var(--scene4-arrow-offset));
  line-height: 1;
}

.scene4__side {
  position: absolute;
  right: 5.56%;
  bottom: 135px;
  width: 250px;
  transform: translateX(500%);
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.1, 1);
}

.scene4:hover .scene4__side {
  transform: translateX(0);
}

.scene4__side-text {
  font-family: 'Poiret One', cursive;
  font-size: 35px;
  font-weight: 400;
  line-height: 92%;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.scene4__mazok {
  position: absolute;
  top: 5%;
  right: -40%;
  width: 800px;
  height: auto;
  max-width: none;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.scene5 {
  position: relative;
  width: 100%;
  height: 757px;
  overflow: hidden;
}

.scene5__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 40%;
  z-index: 1;
  transform: scale(1.7);
  transform-origin: center 40%;
  transition: transform 2000ms ease-out;
}

.scene5:hover .scene5__bg {
  transform: scale(1);
}

.scene5__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.scene5__mazok {
  position: absolute;
  left: -205px;
  bottom: -495px;
  width: 840px;
  height: auto;
  filter: drop-shadow(12px 15px 4px #00000087);
  mix-blend-mode: hard-light;
  z-index: 3;
  pointer-events: none;
}

.scene5__inner {
  position: relative;
  z-index: 4;
  display: flex;
  padding: 80px var(--container-padding);
  height: 100%;
}

.scene5__left {
  width: 40%;
  display: flex;
  align-items: flex-start;
  padding-left: 40px;
}

.scene5__title {
  font-family: 'Poiret One', cursive;
  font-size: 73px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.scene5__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  padding-left: 150px;
  margin-left: 80px;
}

.scene5__text {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.scene6 {
  position: relative;
  width: 100%;
  height: 2831px;
  background-color: var(--color-primary-blue);
  overflow: hidden;
}

.scene6__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.scene6__img {
  position: absolute;
  object-fit: cover;
  transition: transform 3s cubic-bezier(0.25, 0.45, 0.2, 1);
}

.scene6__img--1 {
  top: 3%;
  left: 8%;
  width: 274px;
  height: 366px;
  transform: translateX(calc(-100% - 120px));
}

.scene6__img--2 {
  top: 2.5%;
  right: 10%;
  width: 550px;
  height: 366px;
  transform: translateX(calc(100% + 260px));
}

.scene6__img--3 {
  top: 19%;
  left: 28%;
  width: 311px;
  height: 388px;
  transform: translateX(calc(-100% - 280px));
}

.scene6__img--4 {
  top: 34%;
  left: 8%;
  width: 274px;
  height: 342px;
  transform: translateX(calc(-100% - 120px));
}

.scene6__img--5 {
  top: 34%;
  right: 8%;
  width: 596px;
  height: 421px;
  transform: translateX(calc(100% + 220px));
}

.scene6__img--6 {
  top: 54%;
  left: 8%;
  width: 543px;
  height: 407px;
  transform: translateX(calc(-100% - 140px));
}

.scene6__img--7 {
  top: 69%;
  right: 8%;
  width: 596px;
  height: 397px;
  transform: translateX(calc(100% + 220px));
}

.scene6__img--8 {
  top: 82.5%;
  left: 8%;
  width: 546px;
  height: 363px;
  transform: translateX(calc(-100% - 130px));
}

.scene6:hover .scene6__img {
  transform: translateX(0);
}

.scene6__mazok {
  position: absolute;
  width: 800px;
  height: auto;
  max-width: none;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.scene6__mazok--1 {
  top: 300px;
  right: -47%;
  width: 960px;
}

.scene6__mazok--2 {
  top: 455px;
  left: -42%;
  transform: scaleX(-1);
}

.scene6__mazok--3 {
  top: 1656px;
  right: calc(8% - 302px);
  width: 1200px;
}

.scene7 {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
}

.scene7__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.scene7__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #001327B3;
  z-index: 2;
}

.scene7__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px var(--container-padding);
  height: 100%;
}

.scene7__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: 16px;
  transform: translateX(-400%);
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.1, 1);
}

.scene7__subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: var(--color-white);
  opacity: 0.8;
  text-align: center;
  margin-bottom: 80px;
  transform: translateX(300%);
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.1, 1);
}

.scene7__slider {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.scene7__arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  display: none;
}

.scene7__arrow img {
  width: 28px;
  height: 32px;
}

.scene7__cards {
  display: flex;
  gap: 18px;
  flex: 1;
}

.scene7__card {
  flex: 1;
  background: #3A88FE55;
  border: 1px solid #3A88FE7D;
  backdrop-filter: blur(6px);
  width: 356px;
  height: 218px;
  border-radius: 20px;
  padding: 20px 30px 30px;
  display: flex;
  flex-direction: column;
}

.scene7__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.scene7__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.scene7__name {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.scene7__review {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: var(--color-white);
  opacity: 0.9;
}

.scene7:hover .scene7__title {
  transform: translateX(0);
}

.scene7:hover .scene7__subtitle {
  transform: translateX(0);
}

.scene8 {
  position: relative;
  width: 100%;
  height: 1061px;
  background-color: #195BEA;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scene8__inner {
  position: relative;
  z-index: 6;
  width: 100%;
  padding: 110px var(--container-padding) 0;
  flex: 1;
  overflow-x: clip;
}

.scene8__sunflowers {
  position: absolute;
  top: -480px;
  left: -62%;
  width: 1392px;
  height: auto;
  z-index: 5;
  pointer-events: none;
}

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

.scene8__title {
  font-family: 'Poiret One', cursive;
  font-size: 70px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: var(--color-white);
  transform: translateX(-200%);
  transition: transform 2s cubic-bezier(0.25, 0.1, 0.1, 1);
}

.scene8__plashka {
  height: 80px;
  width: auto;
  transform: translateX(600%);
  transition: transform 2.3s cubic-bezier(0.25, 0.1, 0.1, 1);
}

.scene8__rules {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 40px;
  transform: translateX(600%);
  transition: transform 2s cubic-bezier(0.25, 0.1, 0.1, 1);
}

.scene8__rules a {
  color: var(--color-white);
  text-decoration: underline;
}

.scene8:hover .scene8__title {
  transform: translateX(0);
}

.scene8:hover .scene8__plashka {
  transform: translateX(0);
}

.scene8:hover .scene8__rules {
  transform: translateX(0);
}

.scene8__table {
  width: 1050px;
  margin: 0 auto;
}

.scene8__row {
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.scene8__row--header {
  padding: 0 0 30px;
}

.scene8__col {
  color: var(--color-white);
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.03em;
}

.scene8__col--category {
  width: 274px;
  flex-shrink: 0;
  margin-right: auto;
}

.scene8__col--price {
  width: 194px;
  flex-shrink: 0;
}

.scene8__col--header {
  font-weight: 600;
  text-transform: uppercase;
}

.scene8__time {
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: none;
}

.scene8__ticket-name {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.scene8__ticket-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: var(--color-white);
  opacity: 0.7;
  margin-top: 4px;
}

.scene8__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.scene8__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 282px;
  height: 85px;
  border-radius: 10px;
  background-color: var(--color-accent-yellow);
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: width 2s cubic-bezier(0.25, 0.1, 0.1, 1), height 2s cubic-bezier(0.25, 0.1, 0.1, 1), box-shadow 0.3s;
}

.scene8:hover .scene8__cta {
  width: 316px;
  height: 92px;
}

.scene8__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);
}

.scene8__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(0deg, rgba(0, 19, 39, 0.8) 0%, rgba(0, 19, 39, 0) 100%);
  z-index: 10;
  pointer-events: none;
}

.scene8__info {
  position: relative;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  cursor: pointer;
}

.scene8__info-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.scene8__tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  width: 320px;
  max-width: 90vw;
  background: #fff;
  color: #011120;
  padding: 14px 16px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 10;
  pointer-events: none;
  white-space: normal;
}

.scene8__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
}

.scene8__info:hover .scene8__tooltip,
.scene8__info:focus .scene8__tooltip,
.scene8__info:focus-within .scene8__tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .scene8__tooltip {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: auto;
    top: 50%;
    width: auto;
    max-width: none;
    transform: translateY(-50%);
  }
  .scene8__tooltip::after {
    display: none;
  }
}