* {
  box-sizing: border-box;
}

:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --cyan: #0891b2;
  --blue: #2563eb;
  --amber: #f59e0b;
  --rose: #e11d48;
  --shadow: 0 18px 40px rgb(15 23 42 / 0.14);
  --soft-shadow: 0 10px 28px rgb(15 23 42 / 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  line-height: 1.65;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgb(15 23 42 / 0.96), rgb(13 148 136 / 0.92), rgb(8 145 178 / 0.95));
  color: #ffffff;
  box-shadow: 0 10px 30px rgb(15 23 42 / 0.24);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(255 255 255 / 0.16);
  border: 1px solid rgb(255 255 255 / 0.2);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.22);
}

.brand-text {
  font-size: 20px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.desktop-nav a,
.mobile-nav a {
  border-radius: 10px;
  color: rgb(255 255 255 / 0.88);
  transition: 0.25s ease;
}

.desktop-nav a {
  padding: 8px 12px;
  font-size: 14px;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
  background: rgb(255 255 255 / 0.16);
  color: #ffffff;
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgb(255 255 255 / 0.12);
  color: #fff;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 10px 12px;
  background: rgb(255 255 255 / 0.08);
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #020617;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

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

.hero-slide img {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.hero-slide::before,
.card-cover::before,
.detail-poster::before,
.category-card a::before,
.horizontal-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f766e, #0891b2, #2563eb);
  z-index: 0;
}

.hero-slide img,
.card-cover img,
.detail-poster img,
.category-card img,
.horizontal-cover img {
  position: relative;
  z-index: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgb(0 0 0 / 0.82) 0%, rgb(0 0 0 / 0.52) 50%, rgb(0 0 0 / 0.12) 100%);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1280px) / 2 + 24px));
  right: 32px;
  bottom: 76px;
  z-index: 3;
  max-width: 780px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-content .eyebrow,
.page-hero .eyebrow,
.detail-info .eyebrow {
  color: #5eead4;
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 14px 38px rgb(0 0 0 / 0.45);
}

.hero-desc {
  max-width: 700px;
  margin: 0 0 22px;
  color: rgb(229 231 235 / 0.94);
  font-size: 18px;
}

.hero-tags,
.tag-row,
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.hero-tags span {
  padding: 8px 13px;
  color: #ffffff;
  background: rgb(255 255 255 / 0.18);
  border: 1px solid rgb(255 255 255 / 0.18);
  backdrop-filter: blur(12px);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary-button,
.ghost-button,
.section-heading a,
.category-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.primary-button {
  min-height: 46px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  box-shadow: 0 18px 36px rgb(13 148 136 / 0.35);
}

.primary-button:hover,
.section-heading a:hover,
.category-card a:hover span {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.ghost-button {
  min-height: 46px;
  padding: 0 22px;
  color: #ffffff;
  background: rgb(255 255 255 / 0.16);
  border: 1px solid rgb(255 255 255 / 0.22);
  backdrop-filter: blur(12px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgb(0 0 0 / 0.38);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition: 0.25s ease;
}

.hero-arrow:hover {
  background: rgb(0 0 0 / 0.62);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow.left {
  left: 24px;
  transform: translateY(-50%);
}

.hero-arrow.right {
  right: 24px;
  transform: translateY(-50%);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 4;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.48);
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-dots button.active {
  width: 34px;
  background: #ffffff;
}

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

.panel-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.section-heading.compact {
  align-items: center;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-heading a,
.category-card span {
  min-height: 38px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--teal);
  font-size: 14px;
  box-shadow: 0 10px 22px rgb(13 148 136 / 0.2);
}

.quick-search {
  margin-top: -44px;
  position: relative;
  z-index: 5;
  background: var(--panel);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.search-bar input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 18px;
  outline: none;
  color: var(--ink);
  background: #ffffff;
  transition: 0.25s ease;
}

.search-bar input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgb(20 184 166 / 0.16);
}

.category-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.category-badge {
  display: flex;
  flex-direction: column;
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f0fdfa, #ecfeff);
  border: 1px solid rgb(13 148 136 / 0.14);
  box-shadow: var(--soft-shadow);
  transition: 0.25s ease;
}

.category-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-badge span {
  font-weight: 800;
  color: var(--teal-dark);
}

.category-badge em {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: 0.3s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-cover {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f766e, #0891b2, #2563eb);
}

.movie-card.large .card-cover {
  height: 320px;
}

.card-cover img {
  transition: transform 0.5s ease;
}

.movie-card:hover .card-cover img {
  transform: scale(1.08);
}

.duration {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: rgb(0 0 0 / 0.62);
  backdrop-filter: blur(10px);
  font-size: 12px;
}

.card-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  height: 60%;
  background: linear-gradient(0deg, rgb(0 0 0 / 0.66), transparent);
  opacity: 0;
  transition: 0.25s ease;
}

.movie-card:hover .card-cover::after {
  opacity: 1;
}

.card-body {
  padding: 18px;
}

.card-body h3,
.horizontal-body h3 {
  margin: 0 0 8px;
  color: #1f2937;
  line-height: 1.25;
}

.card-body h3 {
  font-size: 18px;
}

.card-body h3 a:hover,
.horizontal-body h3 a:hover {
  color: var(--teal);
}

.card-body p,
.horizontal-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 13px;
}

.tag-row {
  gap: 6px;
}

.tag-row span {
  padding: 4px 8px;
  color: var(--teal-dark);
  background: #f0fdfa;
  font-size: 12px;
}

.soft-panel {
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 46px 32px;
  border-radius: 32px;
  background: linear-gradient(90deg, #f0fdfa, #ecfeff);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.7), var(--soft-shadow);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.rank-list {
  display: grid;
  gap: 16px;
}

.horizontal-card {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: 0.25s ease;
}

.horizontal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.horizontal-cover {
  position: relative;
  flex: 0 0 150px;
  height: 100px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f766e, #0891b2, #2563eb);
}

.horizontal-cover span {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 3px 7px;
  border-radius: 999px;
  color: #ffffff;
  background: rgb(0 0 0 / 0.58);
  font-size: 11px;
}

.horizontal-body {
  min-width: 0;
  flex: 1;
}

.horizontal-body h3 {
  font-size: 17px;
}

.rank-index {
  position: absolute;
  left: -8px;
  top: -8px;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--rose));
  font-weight: 900;
  box-shadow: 0 10px 22px rgb(225 29 72 / 0.2);
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 64px 32px;
  border-radius: 34px;
  color: #ffffff;
  background: radial-gradient(circle at 20% 20%, rgb(45 212 191 / 0.35), transparent 36%), linear-gradient(135deg, #0f172a, #0f766e 58%, #0891b2);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 850px;
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: rgb(255 255 255 / 0.84);
  font-size: 18px;
}

.small-hero {
  min-height: 260px;
}

.hero-search {
  max-width: 720px;
  margin-top: 24px;
}

.filter-tags {
  margin-top: 16px;
}

.filter-tags button {
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  padding: 7px 13px;
  color: #ffffff;
  background: rgb(255 255 255 / 0.13);
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-tags button:hover,
.filter-tags button.active {
  background: #ffffff;
  color: var(--teal-dark);
}

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

.category-card a {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 230px;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: 0.25s ease;
}

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

.category-card img {
  min-height: 230px;
}

.category-card div {
  padding: 28px;
}

.category-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.category-card p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
}

.narrow-section {
  max-width: 980px;
}

.rank-list.full .horizontal-card {
  padding: 18px;
}

.rank-list.full .horizontal-cover {
  flex-basis: 190px;
  height: 124px;
}

.breadcrumb {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--teal);
}

.detail-hero {
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 32px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
  border-radius: 34px;
  color: #ffffff;
  background: radial-gradient(circle at 10% 10%, rgb(45 212 191 / 0.36), transparent 34%), linear-gradient(135deg, #020617, #0f766e 62%, #0891b2);
  box-shadow: var(--shadow);
}

.detail-poster {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(135deg, #0f766e, #0891b2, #2563eb);
  box-shadow: 0 24px 58px rgb(0 0 0 / 0.28);
}

.detail-info {
  align-self: center;
}

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-line {
  max-width: 760px;
  margin: 0 0 20px;
  color: rgb(255 255 255 / 0.86);
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgb(255 255 255 / 0.13);
  border: 1px solid rgb(255 255 255 / 0.16);
}

.detail-tags {
  margin-bottom: 26px;
}

.player-section,
.detail-content {
  max-width: 1120px;
  margin: 54px auto 0;
  padding: 0 24px;
}

.player-section h2,
.detail-content h2 {
  margin: 0 0 18px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #020617;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  display: block;
  width: 100%;
  height: 100%;
  background: #020617;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgb(13 148 136 / 0.38), rgb(0 0 0 / 0.66));
  cursor: pointer;
  transition: 0.3s ease;
}

.player-cover:hover {
  background: radial-gradient(circle at center, rgb(20 184 166 / 0.42), rgb(0 0 0 / 0.72));
}

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

.play-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 24px 60px rgb(8 145 178 / 0.36);
  font-size: 28px;
}

.player-cover strong {
  max-width: 80%;
  font-size: 24px;
  text-shadow: 0 8px 24px rgb(0 0 0 / 0.55);
}

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

.detail-content article {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.detail-content p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
}

.site-footer {
  margin-top: 72px;
  color: #d1d5db;
  background: linear-gradient(180deg, #1f2937, #0f172a);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

.footer-grid p {
  max-width: 520px;
  margin: 0;
  color: #9ca3af;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-grid a:hover {
  color: #5eead4;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--teal);
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

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

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

  .split-layout {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }
}

@media (max-width: 840px) {
  .hero-carousel {
    height: 520px;
  }

  .hero-content {
    left: 22px;
    right: 22px;
    bottom: 66px;
  }

  .hero-arrow {
    display: none;
  }

  .content-section,
  .panel-section {
    padding: 44px 18px;
  }

  .quick-search {
    margin: 0 16px;
    border-radius: 24px;
  }

  .category-badges,
  .catalog-grid,
  .large-grid,
  .latest-grid,
  .hot-grid,
  .related-grid,
  .category-grid,
  .footer-grid,
  .detail-content {
    grid-template-columns: 1fr;
  }

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

  .category-card img {
    height: 220px;
  }

  .detail-hero {
    margin: 18px 16px 0;
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .detail-poster {
    min-height: 360px;
  }

  .page-hero {
    margin: 18px 16px 0;
    padding: 44px 22px;
    border-radius: 26px;
  }

  .horizontal-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .horizontal-cover,
  .rank-list.full .horizontal-cover {
    width: 120px;
    height: 110px;
    flex-basis: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .nav-wrap {
    padding: 0 16px;
  }

  .brand-text {
    font-size: 17px;
  }

  .hero-carousel {
    height: 500px;
  }

  .hero-tags span:nth-child(n + 4) {
    display: none;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-card.large .card-cover,
  .card-cover {
    height: 260px;
  }

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

  .horizontal-cover,
  .rank-list.full .horizontal-cover {
    width: 100%;
    height: 210px;
  }
}
