:root {
  --lotus-50: #f4f9f7;
  --lotus-100: #dceee7;
  --lotus-200: #b9ddcf;
  --lotus-500: #498874;
  --lotus-600: #396d5d;
  --lotus-700: #2f574c;
  --mist-50: #f8fafb;
  --mist-100: #f0f4f7;
  --mist-200: #e1e9ef;
  --mist-400: #a8bccf;
  --mist-500: #8099b3;
  --mist-600: #5f7a95;
  --mist-700: #4a5f78;
  --mist-800: #3d4f64;
  --mist-900: #354354;
  --ink: #17212f;
  --white: #ffffff;
  --shadow-sm: 0 10px 25px rgba(53, 67, 84, 0.08);
  --shadow-md: 0 18px 45px rgba(53, 67, 84, 0.14);
  --shadow-lg: 0 28px 70px rgba(20, 28, 38, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--mist-900);
  background: linear-gradient(180deg, var(--mist-50), #ffffff 28%, var(--mist-50));
  line-height: 1.6;
}

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

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

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(225, 233, 239, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 800;
  color: var(--mist-900);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--lotus-500), var(--mist-700));
  box-shadow: 0 10px 20px rgba(73, 136, 116, 0.25);
}

.brand-text {
  font-size: 1.22rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--mist-600);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--lotus-700);
  background: var(--lotus-50);
}

.quick-search {
  position: relative;
  margin-left: auto;
  width: min(320px, 30vw);
}

.quick-search input,
.filter-search input,
.filter-selects select {
  width: 100%;
  border: 1px solid var(--mist-200);
  border-radius: 999px;
  outline: none;
  color: var(--mist-800);
  background: rgba(248, 250, 251, 0.95);
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quick-search input {
  height: 42px;
  padding: 0 18px 0 42px;
}

.quick-search input:focus,
.filter-search input:focus,
.filter-selects select:focus {
  border-color: var(--lotus-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(73, 136, 116, 0.12);
}

.search-icon,
.filter-search span {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mist-500);
  pointer-events: none;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--mist-800);
  background: var(--mist-100);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0 24px 18px;
  border-top: 1px solid var(--mist-200);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-nav.open {
  display: grid;
  gap: 8px;
}

.mobile-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
}

.mobile-category-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--mist-600);
  background: var(--mist-100);
  font-size: 0.88rem;
}

.hero {
  position: relative;
  height: min(80vh, 780px);
  min-height: 560px;
  overflow: hidden;
  background: var(--mist-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-slide.active .hero-image {
  transform: scale(1.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48) 45%, rgba(0, 0, 0, 0.22));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%);
  color: var(--white);
  animation: fadeIn 0.55s ease;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.watch-info h1 {
  margin: 0;
  font-family: Georgia, Cambria, "Times New Roman", "Noto Serif SC", serif;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: -0.04em;
}

.hero h2 {
  margin: 12px 0 0;
  max-width: 850px;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  line-height: 1.18;
}

.hero p {
  max-width: 720px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.ghost-btn,
.text-link,
.section-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.primary-btn {
  padding: 14px 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--lotus-500);
  box-shadow: 0 16px 35px rgba(73, 136, 116, 0.35);
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--lotus-600);
  box-shadow: 0 22px 42px rgba(73, 136, 116, 0.42);
}

.ghost-btn {
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.ghost-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.hero-control {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
  z-index: 8;
}

.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--white);
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 68px 24px;
}

.content-section + .content-section {
  padding-top: 28px;
}

.soft-panel {
  margin-top: 36px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--lotus-50), var(--mist-50));
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading > div {
  display: grid;
  gap: 8px;
}

.heading-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: var(--lotus-700);
  background: var(--lotus-100);
}

.section-heading h2 {
  margin: 0;
  color: var(--mist-900);
  font-family: Georgia, Cambria, "Times New Roman", "Noto Serif SC", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.section-heading p {
  margin: 0;
  color: var(--mist-600);
}

.section-action,
.text-link {
  color: var(--lotus-600);
}

.section-action:hover,
.text-link:hover {
  color: var(--lotus-700);
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.large-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ranking-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.horizontal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(225, 233, 239, 0.72);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(73, 136, 116, 0.22);
  box-shadow: var(--shadow-md);
}

.movie-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mist-100);
}

.movie-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .movie-thumb img {
  transform: scale(1.1);
}

.thumb-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.04));
  transition: opacity 0.25s ease;
}

.movie-card:hover .thumb-shade {
  opacity: 1;
}

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-float {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 4;
  display: inline-flex;
  min-width: 36px;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(8px);
  font-weight: 800;
}

.movie-info {
  padding: 16px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--mist-500);
  font-size: 0.78rem;
}

.movie-meta a,
.movie-meta span:first-child {
  color: var(--lotus-700);
  font-weight: 700;
}

.movie-meta span,
.movie-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--mist-100);
}

.movie-meta a {
  background: var(--lotus-100);
}

.movie-info h3 {
  margin: 0 0 8px;
  color: var(--mist-900);
  font-size: 1.05rem;
  line-height: 1.35;
}

.movie-info h3 a:hover {
  color: var(--lotus-700);
}

.movie-info p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: var(--mist-600);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card-large .movie-thumb {
  aspect-ratio: 16 / 9;
}

.movie-card-large .movie-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
}

.movie-card-large .movie-info h3,
.movie-card-large .movie-info p {
  color: var(--white);
}

.movie-card-large .movie-meta span,
.movie-card-large .movie-meta a {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.18);
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.movie-card-horizontal .movie-thumb {
  height: 100%;
  aspect-ratio: auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--mist-900);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.category-tile img,
.category-tile .tile-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-tile img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.tile-shade {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.category-tile span,
.category-tile small {
  position: absolute;
  left: 22px;
  right: 22px;
  z-index: 2;
  color: var(--white);
}

.category-tile span {
  bottom: 58px;
  font-family: Georgia, Cambria, "Times New Roman", "Noto Serif SC", serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.category-tile small {
  bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.page-hero {
  position: relative;
  margin: 0;
  padding: 96px 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--lotus-600), var(--mist-800));
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.compact-hero {
  padding-top: 78px;
  padding-bottom: 78px;
}

.category-hero {
  padding-top: 86px;
  padding-bottom: 86px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--mist-200);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-cover-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--mist-100);
}

.category-cover-group img {
  width: 100%;
  height: 106px;
  object-fit: cover;
}

.category-card h2 {
  margin: 8px 0 10px;
  font-size: 1.45rem;
}

.category-card h2 a:hover {
  color: var(--lotus-700);
}

.category-card p {
  margin: 0 0 16px;
  color: var(--mist-600);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 16px;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--mist-200);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.filter-search {
  position: relative;
  display: block;
}

.filter-search input {
  height: 48px;
  padding: 0 18px 0 46px;
}

.filter-selects {
  display: flex;
  gap: 10px;
}

.filter-selects select {
  min-width: 138px;
  height: 48px;
  padding: 0 36px 0 16px;
  cursor: pointer;
}

.empty-state {
  display: none;
  margin: 28px 0;
  padding: 30px;
  border: 1px dashed var(--mist-200);
  border-radius: 22px;
  color: var(--mist-600);
  text-align: center;
  background: var(--white);
}

.empty-state.show {
  display: block;
}

.movie-card.hidden {
  display: none;
}

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--mist-500);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--lotus-600);
}

.watch-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 24px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: var(--shadow-lg);
}

.movie-player {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  background: #000000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.player-overlay strong {
  display: block;
  font-size: 1.12rem;
}

.watch-info {
  padding: 32px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(145deg, var(--mist-900), var(--lotus-700));
  box-shadow: var(--shadow-sm);
}

.watch-info h1 {
  margin-top: 8px;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.watch-desc {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.detail-meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.detail-meta {
  margin: 20px 0;
}

.detail-meta span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
}

.tag-list span {
  color: var(--lotus-700);
  background: var(--lotus-100);
}

.detail-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding-top: 20px;
}

.story-card {
  padding: 30px;
  border: 1px solid var(--mist-200);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.story-card h2 {
  margin: 0 0 14px;
  font-family: Georgia, Cambria, "Times New Roman", "Noto Serif SC", serif;
  font-size: 1.85rem;
}

.story-card p {
  margin: 0;
  color: var(--mist-700);
  font-size: 1.02rem;
}

.accent-card {
  background: linear-gradient(135deg, var(--lotus-50), var(--mist-50));
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--mist-200);
  background: var(--white);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 34px;
}

.footer-brand p {
  max-width: 560px;
  color: var(--mist-600);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: var(--mist-900);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--mist-600);
}

.footer-links a:hover {
  color: var(--lotus-700);
}

.footer-bottom {
  padding: 18px 24px;
  border-top: 1px solid var(--mist-200);
  color: var(--mist-500);
  text-align: center;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 1100px) {
  .movie-grid,
  .archive-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ranking-grid,
  .large-grid,
  .horizontal-list,
  .category-list,
  .detail-content,
  .watch-layout {
    grid-template-columns: 1fr;
  }

  .movie-player {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    padding: 12px 18px;
  }

  .main-nav,
  .quick-search {
    display: none;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .hero {
    min-height: 520px;
    height: 72vh;
  }

  .hero-content {
    bottom: 58px;
    width: calc(100% - 36px);
  }

  .content-section {
    padding: 48px 18px;
  }

  .section-heading,
  .filter-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .filter-panel {
    display: grid;
  }

  .filter-selects {
    flex-direction: column;
  }

  .movie-grid,
  .archive-grid,
  .ranking-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .movie-grid,
  .archive-grid,
  .ranking-grid,
  .large-grid,
  .category-grid,
  .horizontal-list {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    grid-template-columns: 132px 1fr;
  }

  .movie-card-horizontal .movie-info {
    padding: 12px;
  }

  .movie-info h3 {
    font-size: 1rem;
  }

  .page-hero,
  .compact-hero,
  .category-hero {
    padding: 58px 18px;
  }

  .watch-layout {
    padding: 18px;
  }

  .movie-player {
    min-height: 260px;
  }

  .watch-info,
  .story-card {
    padding: 22px;
    border-radius: 22px;
  }
}
