<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*::before,
*::after {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

html,
body {
  box-sizing: border-box;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 10px;
  margin: 0;
}

body {
  font-size: 1.5rem;
  height: 100vh;
  width: 100vw;
}

.app {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: relative;
  top: 0;
  transition: all 0.2s;
  width: 100%;
}

.app__background {
  background: url("../img/bg.jpg");
  background-position: center center;
  background-size: cover;
  filter: blur(5px) grayscale(1);
  height: 100%;
  position: absolute;
  transform: scale(1.1);
  width: 100%;
}
.app__background::before {
  background: rgba(0, 0, 0, 0.7);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.app__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  left: 50%;
  max-width: 120rem;
  overflow-x: hidden;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.slider {
  height: 50rem;
  position: relative;
  width: 100%;
}

.slider__list {
  display: flex;
  height: 100%;
  list-style-type: none;
  margin-top: 3rem;
  position: relative;
  transition: all 0.3s;
  width: 100%;
}

.slider__item {
  position: absolute;
  transition: transform 0.2s;
}
.slider__item .slider__item-img {
  box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.25), 0.6rem 0.6rem 0.6rem rgba(0, 0, 0, 0.35);
  height: 20rem;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  transition: width 0.5s, height 0.5s;
  width: 14rem;
}
.slider__item:first-child .slider__item-img {
  box-shadow: 1.9rem 1.9rem 3.8rem rgba(0, 0, 0, 0.5), 1.5rem 1.5rem 1.2rem rgba(0, 0, 0, 0.3);
  height: 71rem;
  width: 50rem;
}

.text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  left: 52.6rem;
  position: absolute;
  top: 24.5rem;
}

.text__slider-btn {
  align-items: flex-start;
  border-radius: 20%;
  color: #00bfa5;
  cursor: pointer;
  display: flex;
  font-size: 8rem;
  font-weight: bold;
  height: 5rem;
  justify-content: center;
  line-height: 3.7rem;
  overflow: hidden;
  transition: all 0.2s;
  width:8rem;
}
.text__slider-btn:hover {
  color: #40ffe5;
}
.text__slider-btn:active {
  color: #00bfa5;
  transform: scale(1.1);
}

.text__group {
  color: white;
}
.text__group h3 {
  font-size: 3rem;
}

.text__synopsis {
  line-height: 2.5rem;
  text-indent: 3rem;
}

.text__rating {
  color: white;
  display: flex;
  left: 53.5rem;
}

.text__rating-average {
  margin-right: 1rem;
}

.text__rating-number {
  margin-left: 1rem;
}

.text__rating-star-list {
  display: flex;
}

.text__rating-star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  height: 2rem;
  width: 2rem;
  z-index: 10;
}
.text__rating-star:not(:first-child) {
  margin-left: 0.5rem;
}

.text__rating-star-fill {
  background: yellow;
  height: 100%;
}</pre></body></html>