/* Root variables at the top
Base styles next
Layout components
Background images
Navigation
Content containers
Page-specific styles
Character cards
Logo blocks
Text styles
Grid layouts
Sticker containers
Images
Popup and cookie
Media queries */




:root {
  /* Colors */
  --color-primary: red;
  --color-white: #fff;
  --color-black: #000;
  --color-grey: #7d7d7d;
  --color-dark-grey: #2a2a2d;

  /* Spacing */
  --spacing-xs: 10px;
  --spacing-sm: 16px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;

  /* Typography */
  --font-family: Montserrat, sans-serif;
  --font-size-base: 18px;
  --font-size-lg: 24px;
  --font-size-xl: 38px;
  --font-size-xxl: 53px;
  /* --font-weight: 300;
  --line-height: 120%; */

  /* Layout */
  --max-width: 1440px;
  --min-height: 900px;
  --grid-gap: 16px;
}

#preloader {
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: #111; /* или ваш цвет */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
.spinner {
  border: 6px solid #fff;
  border-top: 6px solid #e74c3c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
/* body.loading {
  overflow: hidden;
} */

.w-layout-grid {
  grid-row-gap: var(--grid-gap);
  grid-column-gap: var(--grid-gap);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-hflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.screen {
  justify-content: space-between;
  align-items: flex-start;
  max-width: var(--max-width);
  min-height: var(--min-height);
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.screen.reader {
  display: none;
}

.navbar {
  min-width: 250px;
  display: block;
}

.navbar.act,
.navbar.about {
  display: block;
}

.menu-left {
  z-index: 0;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 2% 3%;
  position: fixed;
  inset: 0% 0% auto;
}

.menu {
  z-index: 9999;
  position: relative;
  cursor: pointer;
  width: 60px;
  display: none;
}

.overlay {
  z-index: 3;
  justify-content: space-between;
  align-items: center;
  max-width: 250px;
  display: block;
}

.overlay.about {
  display: none;
}

.menu-links {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 250px;
  min-height: 800px;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
  display: flex;
}

.menu-link,
.menu-link-read {
  opacity: .3;
  color: #fff;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 110%;
  text-decoration: none;
  transition: opacity .2s;
  filter: blur(4px);
  /* display: block; */
}

.menu-link:hover,
.menu-link-read:hover {
  opacity: .9;
  filter: blur(0px);
}


.menu-bg {
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #3330;
  background-color: #000c;
  display: none;
}

/* .background_image,
.background-light-off,
.background-light-on,
.background-about,
.background-abou-crop {
  object-fit: cover;
  position: absolute;
  inset: 0%;
} */

.background-light-off {
  align-self: auto;
  max-width: var(--max-width);
  height: var(--min-height);
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Начальное состояние для background-light-on (скрыто) */
.background-light-on {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  /* Плавный переход для opacity */
  pointer-events: none;
  /* Гарантирует, что изображение не будет перехватывать клики */
}

/* Класс, который будет добавляться JavaScript-ом для отображения */
.background-light-on.is-visible {
  opacity: 1;
}

.background-light-on {
  justify-content: center;
  align-self: auto;
  align-items: center;
  max-width: 1440px;
  height: 900px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.body {
  color: var(--color-white);
  background-color: var(--color-black);
  min-height: auto;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 300;
  line-height: 120%;
}

.background-about {
  max-width: none;
  min-height: 900px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.content_container {
  flex-flow: row;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: static;
  margin-left: auto;
  margin-right: auto;
  /* padding-left: 40px;
  padding-right: 40px; */
}


.content_container.about {
  /* justify-content: center; */
  display: flex;
  justify-content: flex-end;
  align-self: auto;
  align-items: center;
  margin-top: 60px;
  /* margin-left: 20px;
  margin-right: 20px; */
  /* padding-left: 0%;
  padding-right: 0%; */
}






.about_text_block {
  align-self: auto;
  max-width: 700px;
  margin-top: 100px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  right: 0;
}

.additional_info {
  z-index: 1;
  margin-bottom: 20px;
  position: relative;
}

/* Navigation buttons from act-two_root.html */
.buttons-block {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.white-button {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  min-width: 200px;
  max-width: 250px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.red-button {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  min-width: 200px;
  max-width: 250px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.button {
  text-align: center;
  border-radius: 10px;
  flex: 0 auto;
  width: 200px;
  display: block;
}

.button--inactive {
  opacity: 0.37;
}

.avatar-active {
  display: block;
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.avatar-inactive {
  position: static;
}

.characters-cards {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-right: 60px;
  display: flex;
}



.hotaku {
  background-color: #6f6f6f;
  width: 150px;
  height: 150px;
  /* margin: 5px; */
  text-decoration: none;
  position: relative;

}



.logo-block {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 500px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}





.credits-logo-white {
  align-self: auto;
  width: 500px;
  margin-bottom: 20px;
  display: block;
  position: relative;
}



.credits-logo-red {
  vertical-align: baseline;
  justify-content: flex-start;
  align-items: flex-start;
  width: 500px;
  margin-bottom: 20px;
  /* display: none; */
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  /* Плавный переход для opacity */
  pointer-events: none;
  /* Гарантирует, что изображение не будет перехватывать клики */
}

.credits-logo-red.is-visible {
  opacity: 0.9;
}

.character-name {
  color: #fff;
  text-align: center;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
}

.spacer {
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  min-width: 250px;
  display: none;
  position: static;
  inset: 0% auto 0% 0%;
}

.crew-avatar {
  flex: 0 auto;
  justify-content: center;
  /* align-self: stretch; */
  align-items: center;
  width: auto;
  margin-right: 0;
  display: block;
}

.role-text {
  color: red;
}



.social-links {
  /* flex: 0 auto; */
  justify-content: center;
  /* align-self: flex-end; */
  align-items: center;
  width: 100%;
  max-width: 200px;
  display: flex;
}





.crew-info {
  flex-flow: column;
  /* flex: 1; */
  /* justify-content: space-around; */
  /* align-self: stretch; */
  align-items: center;

  max-width: 250px;
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 12px;
  display: flex;

}

.person {
  transition: transform 0.3s ease;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  /* grid-column-gap: 19px; */
  grid-row-gap: 19px;
  flex-flow: wrap;
  padding-top: 20px;

}

.person:hover {
  transform: translateY(-5px);
}

.avatar-image {
  aspect-ratio: 1/1;
  object-fit: cover;
  justify-content: flex-start;
  align-items: center;
  width: 100px;
  height: 100px;
  display: block;
}

.link-block {
  justify-content: flex-end;
  align-self: auto;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: auto 10px 10px;
  display: block;
}

.crew {
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  max-width: 700px;
  display: block;
}

.support-block {
  flex-flow: row;
  justify-content: space-around;
  align-self: auto;
  max-width: 1100px;
  margin: 60px auto auto;
  padding-left: 2%;
  padding-right: 2%;
  display: block;
  position: static;
  inset: 10% 0% 0%;
}

.image-support {
  float: right;
  clear: none;
  width: 400px;
  padding: 10px;
  display: block;
}

.h1 {
  color: #fff;
  background-color: #fff0;
  margin-bottom: 20px;
  font-size: 53px;
  font-weight: 400;
  line-height: 110%;
}

.h1.red {
  color: red;
  display: block;
}

.paragraph {
  float: none;
  clear: none;
  margin-bottom: 20px;
  display: block;
}

.text-span {
  color: red;
  font-weight: 500;
}

.character-image {
  z-index: 0;
  display: block;
  position: relative;
}

.character-bio {
  z-index: 1;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  display: flex;
}

.red_light_image {
  z-index: 0;
  display: block;
  position: absolute;
  inset: 0%;
}

.character-image-wrapper {
  float: right;
  width: 40%;
  display: block;
  position: relative;
}

.red-blur-sentence {
  z-index: 1;
  color: red;
  max-width: 600px;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 28px;
  position: relative;
}

.text-block-5 {
  color: #fff;
}

.acts_links {
  width: 100%;
}

.act_link {
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  display: flex;
  transition: transform 0.3s ease;
}



.text_block_cast {
  color: red;
  text-align: center;
  margin-bottom: 10px;
}

.act-title {
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 60%;
  display: flex;
  color: red;
  font-size: 26px;
  line-height: 120%;
}

.act-number {
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  width: 30%;
  display: flex;
  color: white;
  line-height: 120%;
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-block_home {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.read_stickers_grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template: ". . Area ." 50%
    "Area-5 Area-4 Area-3 Area-2" 50%
    / 25% 25% 25% 25%;
  grid-auto-columns: 1fr;
  max-height: 800px;
  display: none;
  position: absolute;
  inset: 0%;
}



.sticker_container_2 {
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}



.grid_container {
  max-width: 1400px;
  max-height: 800px;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.sticker_container {
  display: block;
}

.support_stickers_grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template: "Area-4 Area Area Area-2" 400px
    "Area-4 Area-3 Area-3 Area-2" 400px
    / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-height: 800px;
  display: grid;
  position: absolute;
  inset: 0%;
}

.credits_stickers_grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: ". Area-3 Area-5 Area-4"
    "Area-2 Area-2 Area Area-4"
    / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-height: 800px;
  display: none;
  position: absolute;
  inset: 0%;
}

.about_stickers_grid {
  grid-column-gap: 16px;
  grid-row-gap: 1px;
  grid-template: ". Area-6 Area-3 Area-4"
    "Area Area . Area-5"
    / .75fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-height: 800px;
  display: none;
  position: absolute;
  inset: 0%;
}

.cast_stickers_grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: ". Area-3 Area Area-7"
    "Area-6 Area-5 Area-4 Area-2"
    / .5fr 1fr 1fr 1.25fr;
  grid-auto-columns: 1fr;
  max-height: 800px;
  display: none;
  position: absolute;
  inset: 0%;
}


.sticker_container_3 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

/* .grid-image{

} */

.grid {
  grid-column-gap: var(--grid-gap);
  grid-row-gap: var(--grid-gap);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid--character {
  max-width: 1200px;
  max-height: 900px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.grid-takahashi,
.grid-troy,
.grid-tanya,
.grid-martin {
  display: none;
}

.scene-wrapper {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

/* .scenes-cards {
  flex-flow: row-reverse wrap;
  justify-content: space-around;
  align-items: center;
  width: 800px;
  height: auto;
  max-height: 800px;
  margin: auto;
  display: flex;
  position: relative;
  inset: 0%;
} */

/* .scene-card {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  margin: 10px;
  display: flex;
  position: relative;
} */

.act-preview-active {
  display: block;
  opacity: 0;
  position: absolute ;
  inset: 0%;
}

.act-preview-inactive {
  position:static;

}

.act-preview-active {
  transition: opacity 0.3s ease;
}

.scene-card:hover .act-preview-active {
  opacity: 1;
}

.scene-card:hover .act-preview-inactive {
  opacity: 0;
}

.act-info-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  text-align: center;
  flex-flow: column;
  flex: 0 auto;
  align-self: stretch;
  margin-top: 20px;
  display: flex;
}

.act-text-block {
  color: red;
  font-size: 20px;
}

.scene-text-block,
.date-text-block {
  color: #fff;
  font-size: 20px;
}



.slide,
.mask {
  overflow: hidden;
}

.slider {
  background-color: #ddd0;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  height: 100%;
  max-height: 950px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  rotate: 180deg;
}

.slide-inner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  rotate: 180deg;
}

.slide-nav {
  inset: 0% 0% auto;
}

.slide-inner-openning {
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  rotate: 180deg;
}

.slide-2,
.slide-3,
.slide-4 {
  overflow: hidden;
}

.act-page {
  width: auto;
  height: 100%;
  max-height: 850px;
}

.pop-up-cookie {
  z-index: 999999;
  background-color: #2a2a2dbf;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.pop-up {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: auto;
  margin: 220px auto auto;
  display: flex;
  position: relative;
}

.age_ver {
  position: relative;
}

.exit-button {
  position: static;
  inset: auto 0% 0% auto;
}

.i-am-18 {
  position: static;
  inset: auto auto 0% 0%;
}

.warning-buttons {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 20%;
}

.grey-box {
  background-color: #7d7d7d;
  width: 100px;
  height: 100px;
}



.dark-filtr {
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: relative;
}

.reader-nav {
  flex-flow: column;
  align-items: center;
  height: 350px;
  display: flex;
}

.nav-container {
  justify-content: center;
  align-items: center;
  width: 450px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.back-button {
  height: 100px;
}

.forward-button {
  opacity: .3;
  height: 100px;
  rotate: 180deg;
}

.home-button {
  height: 100px;
}

.character-nav {
  flex-flow: column;
  display: flex;
}



.red-hearts {
  position: absolute;
  inset: 3% 25% auto auto;
}

.link-block-2 {
  background-color: #787272;
}

.link-block-2.w--current {
  background-color: #78727200;
}

.grid_so-hyun {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "Area-4 Area-5 Area-6"
    "Area-3 Area-2 Area";
  max-width: 1200px;
  max-height: 900px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.red_art_so-hyun {
  z-index: 4;
  max-width: 60%;
  position: relative;
}

.white_star {
  max-width: 50%;
}

.red_falling_star {
  z-index: 0;
  width: 300px;
  position: relative;
}

.crown {
  z-index: 2;
  max-width: 80%;
  position: relative;
}

.arrow-block {
  position: relative;
  inset: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.right-arrow {
  flex: none;
  width: 70px;
  padding-left: 20px;
}

.left-arrow {
  flex: none;
  width: 70px;
  padding-right: 20px;
}

.right_arrow {
  rotate: 180deg;
}

.left-arrow-cast,
.right-arrow-cast {
  width: 350px;
}

.diamond {
  z-index: 1;
  width: 100%;
  max-width: 200px;
  position: relative;
}

.mouth {
  width: 100%;
  max-width: 250px;
  scale: -1;
}

.lipstick {
  width: 100%;
  max-width: 250px;
}

.mouths2 {
  z-index: 1;
  width: 100%;
  max-width: 300px;
  position: relative;
}

.big_doll {
  width: 100%;
  max-width: 250px;
}

.grid_tanya {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "Area-4 Area-5 Area-6"
    "Area-3 Area-2 Area";
  max-width: 1200px;
  max-height: 900px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.right-arrow-2 {
  width: 20%;
}

.left-arrow-2 {
  width: 20%;
}

.bio_wrapper {
  width: 60%;
}


/* Age Verification Popup */
.age-verification-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.age-verification-popup.show {
  opacity: 1;
  visibility: visible;
}

.age-verification-popup .popup-content {
  background: transparent;
  border: none;
  padding: 0;
  max-width: 600px;
  text-align: center;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.age-verification-popup.show .popup-content {
  transform: scale(1);
}

.age-verification-image {
  margin-bottom: 30px;
}

.age-verification-image img {
  max-width: 100%;
  height: auto;
}

.age-verification-popup .warning-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 20px;
}

.age-verification-popup .exit-button,
.age-verification-popup .i-am-18-button {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 10px;
}

.age-verification-popup .exit-button:hover,
.age-verification-popup .i-am-18-button:hover {
  transform: scale(1.1);
}

.age-verification-popup .exit-button img,
.age-verification-popup .i-am-18-button img {
  max-width: 150px;
  height: auto;
}

@media screen and (max-width: 991px) {
  .screen {
    flex-flow: column;
    min-height: var(--min-height);
  }

  .screen.reader {
    display: block;
  }

  .navbar {
    display: block;
    position: absolute;
    inset: 0% 0% auto;
  }

  .navbar.act {
    height: 100vh;
    display: block;
  }

  .navbar.about {
    display: block;
  }

  .menu-left {
    z-index: 9999;
    position: fixed;
  }

  .menu {
    z-index: 9999;
    position: relative;
  }

  .overlay {
    z-index: 2;
    width: 100%;
    max-width: none;
    display: none;
    position: absolute;
    inset: 0%;
  }

  .overlay.about {
    display: none;
  }

  /* .menu-links {
    z-index: 3;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    inset: 0%;
  } */

  .menu-link,
  .menu-link-read {
    /* font-size: 3rem;
    display: block; */
    filter: blur(0px);
  }

  .menu-bg {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #000000e6;
    height: 100vh;
    min-height: 900px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
    position: fixed;
    inset: 0%;
  }

  .background_image {
    position: absolute;
  }

  .background-light-off {
    object-fit: cover;
    min-height: 900px;
    position: relative;
  }

  .background-light-on {
    /* aspect-ratio: auto;
    object-fit: cover;
    min-height: 900px; */
    display: none;
    /* inset: 0%; */
  }

  .body {
    min-height: auto;
  }

  .background-about {
    width: auto;
    display: none;
    position: absolute;
    overflow: clip;
  }



  .about_text_block {
    align-self: auto;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .buttons-block {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .characters-cards {
    padding-right: 0;
  }

  .hotaku {
    position: relative;
  }

  .logo-block {
    margin-bottom: 20px;
  }





  .credits-logo-white {
    margin-left: auto;
    margin-right: auto;
  }

  .credits-logo-red {
    margin-left: auto;
    margin-right: auto;
    display: none;
  }

  .spacer {
    z-index: 3;
    order: 0;
    align-self: auto;
    width: 100%;
    min-height: 150px;
    display: none;
  }

  .crew {
    flex-flow: column;
    display: block;
  }

  .support-block {
    margin-left: 20px;
    margin-right: 20px;
    position: static;
    inset: 0%;
  }

  .image-support {
    order: 0;
    align-self: auto;
    padding: 10px;
  }

  .h1 {
    font-size: 43px;
  }

  .h1.red {
    font-weight: 500;
    line-height: 120%;
  }

  .paragraph {
    float: none;
  }

  .character-image {
    float: none;
    margin-top: 0;
  }

  .character-bio {
    flex-flow: column-reverse;
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 2%;
    padding-right: 2%;
    position: static;
    top: 0%;
  }

  .red_light_image {
    margin-top: 0;
  }

  .character-image-wrapper {
    float: right;
    width: 100%;
  }

  .act_link {
    z-index: 1;
    position: relative;
  }



  .act-number {
    justify-content: center;
    align-items: flex-start;
    font-size: 1.2rem;
  }

  .logo-block_home {
    margin-top: 60px;
    inset: 0% 0% auto;
  }

  .grid_container {
    display: none;
  }

  .grid-takahashi,
  .grid-troy,
  .grid-tanya,
  .grid-martin {
    display: none;
  }

  .scene-wrapper {
    justify-content: center;
    margin-top: 100px;
    display: flex;
  }

  .scenes-cards {
    justify-content: space-around;
    width: 500px;
    /* margin-top: 100px; */
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .scene-card {
    flex-flow: column;
    width: 180px;
    display: flex;
  }

  .slider {
    display: none;
  }

  .act-page.mobile {
    max-height: none;
  }

  .pop-up {
    position: absolute;
    inset: 0% 0% auto;
  }

  .dark-filtr {
    position: absolute;
    inset: 0%;
  }

  .reader-nav {
    display: block;
  }

  .nav-container {
    z-index: 3;
    position: fixed;
    inset: 0% 0% auto;
  }

  .red-hearts {
    margin-top: 20px;
    inset: 0% 0% auto auto;
  }

  .background-abou-crop {
    width: auto;
    max-width: none;
    display: block;
    overflow: clip;
  }

  .grid_so-hyun,
  .grid_tanya {
    display: none;
  }

  .bio_wrapper {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .screen {
    min-height: 800px;
  }

  .navbar {
    position: absolute;
    inset: 0% 0% auto;
  }

  .navbar.act {
    display: block;
  }

  .menu-left {
    background-image: none;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 2% 3%;
  }

  .menu {
    z-index: 10001;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    padding-right: 0;
    display: block;
    inset: 0% 0% auto auto;
  }

  .overlay {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: none;
    position: absolute;
  }

  .menu-links {
    text-align: center;
    min-height: auto;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    inset: 0%;
  }


  .menu-bg {
    height: 100%;
    min-height: 900px;
    display: block;
  }

  .background-light-off {
    min-height: 800px;
    position: relative;
  }

  .background-light-on {
    /* object-fit: cover;
    min-height: 800px; */
    display: none;
  }

  .body {
    min-height: auto;
  }

  .background-about {
    position: fixed;
    overflow: clip;
  }



  .about_text_block {
    align-self: auto;
  }

  .logo-block {
    width: auto;
    max-width: none;
    position: relative;
  }



  .credits-logo-white {
    position: static;
  }

  .credits-logo-red {
    display: none;
  }

  .spacer {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    inset: 0%;
  }



  .social-links {
    flex-flow: wrap;
    align-self: auto;
  }



  .crew {
    width: auto;
    display: block;
  }

  .support-block {
    top: 0%;
  }

  .image-support {
    width: 260px;
    display: block;
  }

  .h1 {
    width: 100%;
    font-size: 43px;
  }

  .h1.red {
    clear: left;
    width: auto;
    font-size: 38px;
  }

  .paragraph {
    max-width: 100%;
  }

  .character-image {
    margin-top: 0;
  }

  .character-bio {
    z-index: 1;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0%;
    padding-right: 0%;
    display: flex;
    position: static;
  }

  .red_light_image {
    margin-top: 0;
  }

  .character-image-wrapper {
    z-index: 1;
    box-sizing: border-box;
  }

  .red-blur-sentence {
    position: static;
  }



  .act-title {
    justify-content: flex-start;
    align-items: center;
    font-size: 22px;
  }

  .act-number {
    justify-content: center;
    align-items: flex-start;
    font-size: 1rem;
  }

  .logo-block_home {
    width: auto;
    max-width: none;
    margin-left: 5%;
    margin-right: 5%;
    position: relative;
  }

  .scene-wrapper {
    margin-top: 80px;
  }

  .scenes-cards {
    flex-flow: row-reverse wrap;
    justify-content: space-around;
    width: 400px;
    min-width: auto;
    /* margin-top: 90px; */
    margin-left: auto;
    margin-right: auto;
  }

  .scene-card {
    order: 0;
    justify-content: center;
    align-self: auto;
    align-items: center;
    width: 150px;
    position: relative;
  }

  .pop-up {
    position: absolute;
    inset: 0% 0% auto;
  }

  .dark-filtr {
    width: 100%;
    height: 100vh;
    position: fixed;
    inset: 0%;
  }

  .nav-container {
    width: 300px;
  }

  .back-button,
  .forward-button,
  .home-button {
    height: 90px;
  }



  .red-hearts {
    max-width: 60%;
    margin-top: 40px;
  }

  .background-abou-crop {
    position: fixed;
    overflow: clip;
  }

  .buttons-block {
    flex-direction: column-reverse;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .age-verification-popup .popup-content {
    max-width: 90%;
  }
  
  .age-verification-popup .warning-buttons {
    gap: 30px;
  }
  
  .age-verification-popup .exit-button img,
  .age-verification-popup .i-am-18-button img {
    max-width: 80px;
  }

  
}

@media screen and (max-width: 479px) {
  .screen {
    justify-content: space-between;
    align-items: flex-start;
    min-height: 700px;
    padding: 20px;
  }

  .navbar {
    min-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .navbar.act {
    display: block;
  }

  .menu-left {
    z-index: 9999;
    background-color: #0000;
    background-image: none;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
  }

  .overlay {
    flex-flow: column;
    place-content: flex-start center;
    align-items: stretch;
    display: none;
  }

  .menu-links {
    z-index: 3;
    min-width: 240px;
    inset: 0%;
  }

  .menu-bg {
    z-index: 2;
    height: 100%;
    min-height: 900px;
  }

  .background-light-off {
    min-height: 700px;
    overflow: hidden;
  }

  .background-light-on {
    overflow: hidden;
  }

  .body {
    min-height: auto;
  }

  .background-about {
    display: block;
    overflow: clip;
  }
  .additional_info {
  z-index: 1;
  margin-bottom: 20px;
  position: relative;
}



  .about_text_block {
    align-self: auto;
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .buttons-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .logo-block {
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
  }





  .credits-logo-white {
    position: static;
  }

  .credits-logo-red {
    width: 300px;
    display: none;
    inset: 0%;
  }

  .spacer {
    margin-left: 0;
    margin-right: 0;
    inset: 0%;
  }

  .crew-avatar {
    align-self: center;
  }

  .status-text {
    text-align: center;
    align-self: auto;
  }



  .social-links {
    align-self: center;
  }








  .crew-info {
    justify-content: space-around;
    align-self: center;
    align-items: center;
  }



  .avatar-image {
    width: auto;
    max-width: 150px;
    height: auto;
  }

  .support-block {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0%;
    padding-right: 0%;
  }

  .image-support {
    /* float: right; */
    clear: none;
    width: 240px;
    display: inline-block;
  }

  .h1 {
    float: none;
    clear: none;
    font-size: 33px;
    display: block;
  }

  .h1.red {
    float: none;
    clear: both;
    text-align: center;
    font-size: 38px;
  }

  .paragraph {
    clear: none;
    text-align: left;
    height: auto;
  }

  .character-image {
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
    inset: 0% 0% auto;
  }

  .character-bio {
    max-height: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0%;
    padding-right: 0%;
    inset: 0% 0% auto;
  }

  .red_light_image {
    max-height: 400px;
    margin-left: auto;
    margin-right: auto;
    display: none;
    position: absolute;
  }

  .character-image-wrapper {
    clear: both;
    max-height: 400px;
    /* margin-top: -90px; */
    margin-left: auto;
    margin-right: auto;
  }

  .red-blur-sentence {
    width: 100%;
  }

  .act_link {
    z-index: 1;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }



  .act-title {
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
  }

  .logo-block_home {
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .scene-wrapper {
    margin-top: 60px;
  }

  .scenes-cards {
    width: auto;
    min-width: auto;
    max-height: none;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0%;
  }

  .scene-card {
    order: -1;
    margin-bottom: 20px;
  }

  .pop-up {
    width: 96%;
    padding: 10px;
    position: absolute;
    inset: 0% 0% auto;
  }

  .warning-buttons {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .nav-container {
    width: 120px;
    margin-top: 20px;
  }

  .back-button,
  .forward-button,
  .home-button {
    height: 40px;
  }



  .red-hearts {
    margin-top: 60px;
  }

  .background-abou-crop {
    display: block;
    overflow: clip;
  }

  .age-verification-popup .popup-content {
    max-width: 95%;
  }
  
  .age-verification-popup .warning-buttons {
    gap: 20px;
  }
  
  .age-verification-popup .exit-button img,
  .age-verification-popup .i-am-18-button img {
    max-width: 60px;
  }
}



/* Consolidate text styles */
.text-block,
.act-info-block,
.text-block-5 {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}






@font-face {
  font-family: 'webflow-icons';
  src: url("data:application/x-font-ttf;charset=utf-8;base64,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") format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}

h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}

h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}

h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #E2E2E2;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0;
  margin-bottom: 10px;
}

figcaption {
  margin-top: 5px;
  text-align: center;
}

ul,
ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}



label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}