@import url("/static/ab_movies/styles/components/simple_card.0417f5275b71.css");

.coming_soon {
	margin-top: 10rem;
}

.coming_soon__slider-wrapper {
    position: relative;
    /* можно задать дополнительные отступы или размеры при необходимости */
  }
  
  .coming_soon__slider-container {
    position: relative;
    /* Убираем overflow: hidden, чтобы карточки могли выходить за пределы */
    overflow: visible;
  }
  
  .coming_soon__slider-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px; /* отступ между карточками */
  }
  
  /* Кнопки навигации - выносим их за границы слайдера */
  .coming_soon__slider-prev,
  .coming_soon__slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;

    height: 100%;
    min-width: 7rem;
    width: fit-content;
  }
  
  .coming_soon__slider-prev {
    left: -5%;
  }
  
  .coming_soon__slider-next {
    right: -5%;
  }
  
  /* Элементы эффекта затемнения */
  .coming_soon__fade {
    position: absolute;
    top: 0;
    width: 15vw; /* настройте по вкусу */
    height: 100%;
    pointer-events: none;
    z-index: 6;
  }
  
  .coming_soon__fade-left {
    left: 0; /* эффект с левой стороны */
    translate: -50% 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), transparent);
  }
  
  .coming_soon__fade-right {
    right: 0; /* эффект с правой стороны */
    translate: 50% 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 1), transparent);
  }

.genres {
	margin-top: 5vh;
}

.keep-out-tape {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height: fit-content;
	border-style: solid;
	border-width: 7px 0;
	border-image: repeating-linear-gradient(
	    -75deg, 
	    rgb(0, 255, 88), 
	    rgb(0, 255, 88) 20px, 
	    black 15px, 
	    black 35px
	) 25;
	box-sizing: border-box;
	background-color: rgb(0, 255, 88);
	overflow: hidden; /* Скрываем лишние элементы */
	white-space: nowrap;
  }
  
  .keep-out-tape__item {
	display: flex;
	align-items: center;
	gap: 20px; /* Расстояние между текстом и иконкой */
	padding: 0 10px; /* Внутренний отступ для текста */
  }
  
  .keep-out-tape__image {
	width: 16px;
	height: 16px;
	filter: invert(1);
  }
  
  .keep-out-tape__title {
	font-size: 1rem;
	letter-spacing: 3px;
	font-weight: bold;
	font-family: "JetBrains Mono", monospace;
	color: black;
	text-transform: uppercase;
	white-space: nowrap;
  }

.genres-container {
	width: 100%;
	overflow: hidden;
	padding: 15px 0;
	box-sizing: border-box;
  }
  
  .genres-wrapper {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	width: max-content; /* Чтобы ширина не сжималась */
  }
  
  .genre-item-wrapper {
    position: relative;
  }

  .genre-item {
  position: relative;
	width: 480px;
	height: 100px;
	background-color: var(--text-color-emphasis);
	clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s ease-out;
  cursor: pointer;
  z-index: 1;
  }
  
  .genre-item__title {
  /* font-family: "Supply", sans-serif; */
	font-size: clamp(1.2em, 1.1vw, 2em);
	width: 60%;
  font-weight: bold;
	text-align: center;
	letter-spacing: 2px;
  color: rgb(0, 0, 0);
  align-items: center;
  overflow-wrap: break-word;
  word-break: break-word;
  /* padding: 0;
  margin: 0;
  background-color: #fff; */
  text-shadow:
    -2px -2px 0 rgb(255, 255, 255),
     2px -2px 0 rgb(255, 255, 255),
    -2px  2px 0 rgb(255, 255, 255),
     2px  2px 0 rgb(255, 255, 255);
    /* -webkit-text-stroke: -1px rgb(255, 255, 255); */
  }

  .genre-item__id {
    font-family: "Supply", sans-serif;
    position: absolute;
    bottom: 0;
    right: 20%;
    font-size: clamp(1.5em, 1.2vw, 2.5em);
    font-weight: normal;
    letter-spacing: 2px;
    color: rgb(0, 0, 0);
    text-shadow:
    -2px -2px 0 rgb(255, 255, 255),
     2px -2px 0 rgb(255, 255, 255),
    -2px  2px 0 rgb(255, 255, 255),
     2px  2px 0 rgb(255, 255, 255);
    z-index: 1;
  }

  .floating-icon-wrapper {
    position: absolute;
    animation: drift 5s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
  }
  
  @keyframes drift {
    0% {
      transform: translate(0px, 0px) rotate(0deg);
    }
    100% {
      transform: translate(5px, 5px) rotate(12deg);
    }
  }
  
  .floating-icon {
    display: block;
    z-index: -1;
  }
  
.banner {
    position: relative;
    min-width: 1050px;
    margin: 12vh 0;
    width: 100%;
    max-height: 600px;
    aspect-ratio: 16 / 9;
}

.donut {
  width: 93vw;
  margin-top: 2vh;
}

.donut__container {
  position: relative;
  width: 38rem;
  height: 5.5rem;
  margin-left: auto;
  background: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-radius: 3px;
  padding: 10px;
}

.donut__text-secondary {
  font-size: 1.1rem;
  color: #09000f51;
  font-weight: bolder;
}

.donut__text-main {
  font-size: 1.2rem;
  font-weight: bolder;
  color: #09000F;
  letter-spacing: 3%;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.donut__icon-container {
  position: absolute;
  top: 40px;
  right: 0;
  translate: 25% -50%;
  z-index: 3;
}

.black-cat__icon {
  width: 250px;
  height: 250px;
}

.cat-body {
  display: block;
  position: absolute;
  border-radius: 40%;
  top: 48%;
  left: 93%;
  translate: -50% -50%;
  width: 48px;
  height: 48px;
  background-color: #000;
  z-index: 0;
}

.donut__link-btn {
  position: absolute;
  height: 52%;
  width: 35%;
  bottom: 10px;
  right: 10px;
  background-color: var(--text-color-emphasis);
  z-index: 2;
}

.donut__link {
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 68%;
  width: 35%;
  margin-left: auto;
  font-size: 1.1rem;
  font-weight: bold;
  z-index: 3;
  letter-spacing: 5%;
  transition: all .3s;
}

.donut__link:hover .donut__link-btn {
  cursor: pointer;
}

.coming_soon {
  margin: 5vh 0;
}

.romantic-stories {
	margin: 5vh 0 !important;
}

.fantasy-storie {
	margin: 5vh 0;
}

.comedy-stories {
	margin: 5vh 0;
}
