:root {
  --fog-950: #070a0f;
  --fog-900: #0d1117;
  --fog-850: #151a22;
  --fog-800: #212529;
  --fog-700: #343a40;
  --fog-600: #495057;
  --fog-400: #9aa4b2;
  --fog-300: #c3ccd8;
  --fog-200: #e2e8f0;
  --fog-50: #f8fafc;
  --frost-600: #005ab3;
  --frost-500: #0073e6;
  --frost-400: #1a8cff;
  --frost-300: #67b8ff;
  --mist-800: #243b53;
  --gold: #facc15;
  --danger: #ef4444;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(26, 140, 255, 0.16), transparent 35rem),
    radial-gradient(circle at 80% 10%, rgba(36, 59, 83, 0.4), transparent 34rem),
    var(--fog-900);
  color: var(--fog-200);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(52, 58, 64, 0.9);
  background: rgba(13, 17, 23, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--fog-50);
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--frost-400), var(--frost-600));
  color: white;
  box-shadow: 0 14px 30px rgba(26, 140, 255, 0.35);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link,
.nav-button {
  border: 0;
  color: var(--fog-300);
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-button:hover {
  color: var(--frost-300);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: 220px;
  padding: 10px;
  border: 1px solid var(--fog-700);
  border-radius: 16px;
  background: rgba(33, 37, 41, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a,
.mobile-nav a {
  display: block;
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--fog-300);
  font-size: 14px;
}

.dropdown-panel a:hover,
.mobile-nav a:hover {
  background: var(--fog-700);
  color: var(--frost-300);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--fog-700);
  border-radius: 12px;
  background: rgba(33, 37, 41, 0.8);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--fog-200);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid var(--fog-700);
  border-radius: 16px;
  background: rgba(13, 17, 23, 0.94);
}

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

.sub-page {
  padding-top: 28px;
}

.hero-carousel {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  border: 1px solid rgba(52, 58, 64, 0.72);
  border-radius: 26px;
  background: var(--fog-950);
  box-shadow: var(--shadow);
}

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

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.75s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 15, 0.96) 0%, rgba(13, 17, 23, 0.82) 42%, rgba(13, 17, 23, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 10, 15, 0.88), transparent 50%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: clamp(22px, 6vw, 72px);
  max-width: 680px;
  transform: translateY(-50%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border: 1px solid rgba(26, 140, 255, 0.5);
  border-radius: 999px;
  background: rgba(0, 115, 230, 0.2);
  color: var(--frost-300);
  font-size: 13px;
  font-weight: 750;
}

.hero-content h1,
.hero-content h2 {
  margin: 18px 0 16px;
  color: var(--fog-50);
  font-size: clamp(38px, 6.5vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--fog-200);
  font-size: clamp(16px, 1.8vw, 20px);
}

.hero-meta,
.card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--fog-400);
  font-size: 14px;
}

.hero-meta span,
.detail-meta span {
  border-radius: 999px;
  background: rgba(33, 37, 41, 0.72);
  padding: 6px 10px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 760;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--frost-400), var(--frost-600));
  box-shadow: 0 14px 24px rgba(26, 140, 255, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3ba0ff, #0068cf);
}

.btn-ghost {
  border: 1px solid var(--fog-700);
  background: rgba(33, 37, 41, 0.72);
  color: var(--fog-200);
}

.btn-ghost:hover {
  border-color: var(--frost-500);
  color: var(--frost-300);
}

.btn.full {
  width: 100%;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(33, 37, 41, 0.75);
  color: white;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dot {
  width: 18px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--fog-600);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 42px;
  background: var(--frost-400);
}

.hero-search {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 34px;
  z-index: 6;
  width: min(420px, calc(100% - 36px));
  padding: 14px;
  border: 1px solid rgba(52, 58, 64, 0.9);
  border-radius: 18px;
  background: rgba(13, 17, 23, 0.72);
  backdrop-filter: blur(16px);
}

.global-search-form,
.filter-box {
  display: flex;
  gap: 10px;
}

.global-search-form input,
.filter-box input,
.filter-box select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--fog-700);
  border-radius: 12px;
  outline: 0;
  background: rgba(33, 37, 41, 0.92);
  color: var(--fog-50);
  padding: 0 14px;
}

.global-search-form input:focus,
.filter-box input:focus,
.filter-box select:focus {
  border-color: var(--frost-500);
  box-shadow: 0 0 0 3px rgba(26, 140, 255, 0.14);
}

.global-search-form button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 12px;
  background: var(--frost-500);
  color: white;
  padding: 0 18px;
  font-weight: 760;
}

.quick-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-cats a {
  border-radius: 999px;
  background: rgba(33, 37, 41, 0.9);
  color: var(--fog-300);
  padding: 5px 10px;
  font-size: 12px;
}

.quick-cats a:hover {
  color: var(--frost-300);
}

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

.category-tile,
.category-card a {
  display: block;
  min-height: 124px;
  border: 1px solid rgba(52, 58, 64, 0.86);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(33, 37, 41, 0.96), rgba(36, 59, 83, 0.58));
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-card a:hover {
  border-color: rgba(26, 140, 255, 0.68);
  transform: translateY(-2px);
}

.category-tile strong,
.category-card h2 {
  display: block;
  color: var(--fog-50);
  font-size: 18px;
  line-height: 1.25;
}

.category-tile span,
.category-card p {
  display: block;
  margin-top: 8px;
  color: var(--fog-400);
  font-size: 13px;
}

.category-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-card div span {
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.46);
  color: var(--fog-300);
  padding: 4px 9px;
  font-size: 12px;
}

.content-section {
  padding: 42px 0 10px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.section-title h2 {
  margin: 0;
  color: var(--fog-50);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.section-title span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 140, 255, 0.7), transparent);
}

.section-title.compact h2 {
  font-size: 24px;
}

.section-more {
  color: var(--frost-300);
  font-size: 14px;
  font-weight: 700;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(52, 58, 64, 0.82);
  border-radius: 18px;
  background: rgba(33, 37, 41, 0.72);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  border-color: rgba(26, 140, 255, 0.72);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--fog-800);
}

.movie-card-wide .poster-link {
  aspect-ratio: 16 / 10;
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.06);
}

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 15, 0.8), transparent 55%);
  opacity: 0.86;
}

.play-corner,
.rank-badge {
  position: absolute;
  z-index: 2;
}

.play-corner {
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(26, 140, 255, 0.92);
  color: white;
  font-size: 13px;
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 36px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f97316);
  color: #1f1300;
  font-weight: 900;
}

.card-body {
  padding: 14px;
}

.card-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--fog-50);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-title:hover {
  color: var(--frost-300);
}

.card-meta {
  margin-top: 8px;
  gap: 8px;
  font-size: 12px;
}

.card-body p {
  display: -webkit-box;
  min-height: 42px;
  margin: 10px 0 12px;
  overflow: hidden;
  color: var(--fog-400);
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.5);
  color: var(--fog-300);
  padding: 4px 8px;
  font-size: 12px;
}

.rail-wrap {
  position: relative;
}

.movie-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
  display: none;
}

.movie-rail .movie-card {
  flex: 0 0 230px;
}

.rail-btn {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid var(--fog-700);
  border-radius: 999px;
  background: rgba(33, 37, 41, 0.9);
  color: white;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.rail-wrap:hover .rail-btn {
  opacity: 1;
}

.rail-prev {
  left: -10px;
}

.rail-next {
  right: -10px;
}

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

.split-section .content-section {
  padding-top: 42px;
}

.rank-panel,
.side-card {
  border: 1px solid rgba(52, 58, 64, 0.85);
  border-radius: 22px;
  background: rgba(33, 37, 41, 0.68);
  padding: 20px;
  box-shadow: var(--shadow);
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.mini-movie {
  display: grid;
  grid-template-columns: auto 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 14px;
  padding: 8px;
  background: rgba(13, 17, 23, 0.36);
}

.mini-movie:hover {
  background: rgba(52, 58, 64, 0.56);
}

.mini-movie img {
  width: 56px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
}

.mini-rank {
  width: 24px;
  color: var(--frost-300);
  font-weight: 900;
  text-align: center;
}

.mini-movie strong {
  display: block;
  overflow: hidden;
  color: var(--fog-50);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-movie em {
  display: block;
  margin-top: 4px;
  color: var(--fog-400);
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  border: 1px solid rgba(52, 58, 64, 0.78);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(36, 59, 83, 0.72), rgba(13, 17, 23, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(26, 140, 255, 0.18), transparent 28rem);
  padding: clamp(26px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.small-hero h1 {
  max-width: 820px;
  margin: 18px 0 14px;
  color: var(--fog-50);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.small-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--fog-300);
  font-size: 17px;
}

.filter-box {
  max-width: 760px;
  margin-top: 26px;
}

.filter-box select {
  flex: 0 0 170px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--fog-400);
  font-size: 14px;
}

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

.breadcrumb strong {
  color: var(--fog-200);
  font-weight: 650;
}

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

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

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 58, 64, 0.88);
  border-radius: 22px;
  background: black;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: black;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
  color: white;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-cover span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(26, 140, 255, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
  font-size: 34px;
  padding-left: 5px;
}

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

.movie-detail-copy {
  margin-top: 24px;
  border: 1px solid rgba(52, 58, 64, 0.78);
  border-radius: 22px;
  background: rgba(33, 37, 41, 0.62);
  padding: clamp(22px, 4vw, 34px);
}

.movie-detail-copy h1 {
  margin: 0 0 16px;
  color: var(--fog-50);
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-meta {
  margin-bottom: 22px;
}

.one-line {
  border-left: 3px solid var(--frost-500);
  margin: 0 0 24px;
  padding-left: 16px;
  color: var(--fog-200);
  font-size: 18px;
}

.movie-detail-copy h2,
.side-card h2 {
  margin: 28px 0 12px;
  color: var(--fog-50);
  font-size: 24px;
}

.movie-detail-copy p {
  color: var(--fog-300);
  font-size: 16px;
}

.genre-row,
.detail-tags {
  margin: 18px 0 8px;
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(52, 58, 64, 0.78);
  border-radius: 22px;
  background: var(--fog-800);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.side-card h2 {
  margin-top: 0;
}

.side-card dl {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--fog-400);
}

.side-card dd {
  margin: 0;
  color: var(--fog-200);
}

.side-card a {
  color: var(--frost-300);
}

.site-footer {
  border-top: 1px solid rgba(52, 58, 64, 0.86);
  background: rgba(7, 10, 15, 0.64);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 34px 0;
}

.footer-brand {
  margin-bottom: 10px;
  font-size: 18px;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  color: var(--fog-400);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  max-width: 460px;
}

.footer-links a {
  border-radius: 999px;
  background: rgba(33, 37, 41, 0.72);
  color: var(--fog-300);
  padding: 8px 12px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--frost-300);
}

[data-card].is-hidden {
  display: none;
}

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

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

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

  .detail-side {
    position: static;
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero-carousel {
    min-height: 760px;
  }

  .hero-content {
    top: 38%;
    right: 22px;
  }

  .hero-arrow {
    top: auto;
    bottom: 118px;
  }

  .hero-search {
    left: 18px;
    right: 18px;
    bottom: 22px;
    width: auto;
  }

  .hero-dots {
    bottom: 150px;
  }

  .category-strip,
  .category-grid,
  .movie-grid,
  .large-grid,
  .rank-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .filter-box select {
    flex-basis: auto;
  }

  .detail-side {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 320px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .page-shell,
  .header-inner,
  .mobile-nav,
  .footer-inner {
    width: min(100% - 22px, 1280px);
  }

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

  .hero-carousel {
    min-height: 700px;
    border-radius: 18px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .category-strip,
  .category-grid,
  .movie-grid,
  .large-grid,
  .rank-top-grid {
    grid-template-columns: 1fr;
  }

  .movie-rail .movie-card {
    flex-basis: 78vw;
  }

  .mobile-nav.is-open {
    grid-template-columns: 1fr;
  }

  .player-cover span {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
