:root {
  --ink: #1f2937;
  --muted: #64748b;
  --paper: #ffffff;
  --soft: #fff7ed;
  --line: rgba(146, 64, 14, 0.18);
  --amber-1: #fef3c7;
  --amber-2: #f59e0b;
  --amber-3: #b45309;
  --amber-4: #78350f;
  --night: #0f172a;
  --shadow: 0 18px 55px rgba(120, 53, 15, 0.18);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 38%, #f8fafc 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(120, 53, 15, 0.98), rgba(161, 98, 7, 0.98), rgba(120, 53, 15, 0.98));
  box-shadow: 0 10px 35px rgba(69, 26, 3, 0.25);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fef3c7;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #78350f;
  background: radial-gradient(circle at 30% 30%, #fff7ad, #f59e0b 58%, #b45309);
  box-shadow: 0 0 26px rgba(253, 224, 71, 0.55);
}

.brand-text {
  font-size: clamp(18px, 2.4vw, 27px);
  background: linear-gradient(90deg, #fef9c3, #fde68a, #fff7ed);
  -webkit-background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: #fffbeb;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #78350f;
  background: #fde68a;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 0;
  color: #fef3c7;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 12px;
}

.hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #111827;
}

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

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

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

.hero-backdrop,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 40%, rgba(251, 191, 36, 0.2), transparent 28%), linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(69, 26, 3, 0.76) 48%, rgba(15, 23, 42, 0.32)), linear-gradient(0deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.15));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 54px;
  padding: 74px 0 94px;
}

.hero-copy {
  color: #fff7ed;
}

.hero-eyebrow,
.section-heading p,
.rank-panel-head p,
.article-kicker,
.page-hero p:first-child {
  margin: 0 0 10px;
  color: #facc15;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 1;
  letter-spacing: -0.05em;
  text-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.hero-desc {
  max-width: 710px;
  margin: 24px 0 0;
  color: #fde68a;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(254, 243, 199, 0.13);
  color: #fef3c7;
  border: 1px solid rgba(253, 230, 138, 0.24);
  font-size: 13px;
  font-weight: 800;
}

.tag-row span {
  background: #fff7ed;
  color: #92400e;
  border-color: rgba(180, 83, 9, 0.16);
}

.tag-row.large span {
  color: #fef3c7;
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(251, 191, 36, 0.3);
}

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

.btn,
.search-form button,
.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.btn:hover,
.search-form button:hover,
.filter-pill:hover {
  transform: translateY(-2px);
}

.btn-primary,
.search-form button {
  color: #78350f;
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.28);
}

.btn-ghost {
  color: #fef3c7;
  border: 1px solid rgba(253, 230, 138, 0.34);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.btn.full {
  width: 100%;
}

.hero-poster {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
  transition: transform 0.35s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 82px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-controls button,
.hero-dots button {
  border: 0;
  cursor: pointer;
}

.hero-controls button {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #78350f;
  background: rgba(254, 243, 199, 0.9);
  font-size: 30px;
  line-height: 1;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(254, 243, 199, 0.5);
}

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

.home-search-block,
.content-shell,
.category-section,
.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.home-search-block {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.section-heading.center {
  display: block;
  text-align: center;
}

.section-heading.tight {
  align-items: start;
  display: block;
}

.section-heading h2,
.rank-panel-head h2,
.page-hero h1,
.movie-article h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.section-heading a {
  color: #b45309;
  font-weight: 900;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(760px, 100%);
  margin: 22px auto 0;
}

.search-form.inline-search {
  margin: 0 0 26px;
}

.search-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 15px 20px;
  outline: none;
  background: #fff;
  color: #111827;
  box-shadow: inset 0 0 0 1px rgba(255, 251, 235, 0.45);
}

.search-form input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.content-shell {
  margin-top: 62px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 34px rgba(120, 53, 15, 0.09);
}

.content-shell.overlap {
  margin-top: 42px;
}

.featured-grid,
.movie-grid,
.category-grid,
.category-overview-grid,
.rank-spotlight-grid,
.detail-grid,
.two-column-section {
  display: grid;
  gap: 24px;
}

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

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 35px rgba(120, 53, 15, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(120, 53, 15, 0.19);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #78350f, #111827);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.movie-year,
.movie-type,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff7ed;
  font-size: 12px;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(10px);
}

.movie-year {
  top: 10px;
  right: 10px;
}

.movie-type {
  left: 10px;
  bottom: 10px;
  background: rgba(180, 83, 9, 0.9);
}

.rank-badge {
  top: 10px;
  left: 10px;
  min-width: 34px;
  justify-content: center;
  color: #78350f;
  background: #facc15;
}

.movie-card-body {
  padding: 16px;
}

.card-kicker {
  margin: 0 0 8px;
  color: #b45309;
  font-size: 12px;
  font-weight: 900;
}

.movie-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.category-section {
  margin-top: 64px;
  padding: 58px 0;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fff7ed, #ffffff 55%, #fef3c7);
  box-shadow: 0 15px 36px rgba(120, 53, 15, 0.12);
}

.category-card > a,
.category-main-link {
  display: block;
  padding: 22px;
}

.category-card h3,
.category-overview-card h2 {
  margin: 0 0 10px;
  color: #78350f;
  font-size: 22px;
}

.category-card p,
.category-overview-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

.category-card ul,
.category-overview-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 22px 22px;
  list-style: none;
}

.category-card li a,
.category-overview-card li a {
  color: #b45309;
  font-weight: 800;
}

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

.two-column-section {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.rank-panel {
  position: sticky;
  top: 96px;
  border-radius: var(--radius-lg);
  padding: 26px;
  color: #fff7ed;
  background: linear-gradient(165deg, #0f172a, #78350f 62%, #111827);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.28);
}

.rank-panel ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.rank-panel li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.rank-panel li span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #78350f;
  background: #facc15;
  font-weight: 900;
}

.rank-panel li a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.rank-panel li em {
  color: #fde68a;
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  margin-top: 34px;
  border-radius: 34px;
  padding: clamp(34px, 6vw, 70px);
  color: #fff7ed;
  background: radial-gradient(circle at 80% 0%, rgba(250, 204, 21, 0.24), transparent 28%), linear-gradient(135deg, #0f172a, #78350f 58%, #a16207);
  box-shadow: var(--shadow);
}

.compact-hero,
.search-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 34px;
  align-items: center;
}

.page-hero h1 {
  color: #fff7ed;
  font-size: clamp(34px, 6vw, 66px);
}

.page-hero-text {
  max-width: 760px;
  margin: 18px 0 0;
  color: #fde68a;
  line-height: 1.85;
  font-size: 17px;
}

.category-hero .search-form,
.compact-hero .search-form,
.search-hero .search-form {
  margin: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-pill {
  color: #78350f;
  background: #fff7ed;
  border: 1px solid rgba(180, 83, 9, 0.16);
}

.filter-pill.active {
  color: #fff7ed;
  background: #b45309;
  box-shadow: 0 10px 24px rgba(180, 83, 9, 0.24);
}

.rank-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
}

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

.rank-spotlight {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 26px;
  padding: 18px;
  color: #fff7ed;
  isolation: isolate;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.rank-spotlight img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.1));
}

.rank-spotlight span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #78350f;
  background: #facc15;
  font-weight: 900;
}

.rank-spotlight h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.rank-spotlight p {
  margin: 0;
  color: #fde68a;
  line-height: 1.6;
}

.detail-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #111827;
}

.detail-bg-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(69, 26, 3, 0.72)), linear-gradient(0deg, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.18));
}

.detail-wrap {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 62px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 26px;
  color: #fde68a;
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: #fff7ed;
}

.detail-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: stretch;
}

.video-shell {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 30px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.video-player {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  background: #000;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  color: #78350f;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(253, 230, 138, 0.18), rgba(15, 23, 42, 0.58));
}

.player-start span {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  padding-left: 6px;
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
  box-shadow: 0 16px 45px rgba(245, 158, 11, 0.42);
  font-size: 42px;
}

.video-shell.is-playing .player-start {
  display: none;
}

.detail-side-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(253, 230, 138, 0.18);
  backdrop-filter: blur(16px);
  color: #fff7ed;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.detail-side-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-side-card > div {
  padding: 22px;
}

.detail-side-card p {
  margin: 0 0 10px;
  color: #fde68a;
  font-weight: 900;
}

.detail-side-card h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.22;
}

.detail-content {
  margin-top: 52px;
}

.movie-article {
  max-width: 960px;
}

.movie-article p {
  color: #334155;
  line-height: 1.9;
  font-size: 17px;
}

.movie-article h2 + p {
  margin-top: 16px;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.detail-meta-grid div {
  padding: 16px;
  border-radius: 16px;
  background: #fff7ed;
  border: 1px solid var(--line);
}

.detail-meta-grid strong {
  display: block;
  margin-bottom: 6px;
  color: #b45309;
}

.detail-meta-grid span {
  color: #111827;
  font-weight: 800;
}

.site-footer {
  margin-top: 70px;
  color: #fde68a;
  background: linear-gradient(180deg, #111827, #451a03 55%, #0f172a);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fef3c7;
  font-size: 22px;
  font-weight: 900;
}

.footer-grid p {
  color: #fef3c7;
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: #facc15;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #fde68a;
  font-weight: 700;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(253, 230, 138, 0.2);
  text-align: center;
  color: #fef3c7;
}

.movie-card.hidden-by-search,
.movie-card.hidden-by-filter {
  display: none;
}

@media (max-width: 1100px) {
  .hero-content,
  .detail-grid,
  .rank-hero,
  .two-column-section {
    grid-template-columns: 1fr;
  }

  .hero-poster,
  .detail-side-card {
    max-width: 330px;
  }

  .featured-grid,
  .movie-grid,
  .compact-grid,
  .catalog-grid,
  .category-grid,
  .category-overview-grid,
  .rank-spotlight-grid,
  .mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rank-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 18px;
    background: rgba(120, 53, 15, 0.98);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  }

  .nav-links.open {
    display: flex;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 46px;
  }

  .hero-poster {
    width: 230px;
  }

  .compact-hero,
  .search-hero,
  .detail-meta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid,
  .movie-grid,
  .compact-grid,
  .catalog-grid,
  .category-grid,
  .category-overview-grid,
  .rank-spotlight-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-form {
    flex-direction: column;
    align-items: stretch;
  }

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

  .content-shell,
  .home-search-block {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .home-search-block,
  .content-shell,
  .category-section,
  .page-hero,
  .detail-wrap,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 22px, 1180px);
  }

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

  .hero-slider {
    min-height: 720px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-controls {
    right: 16px;
    bottom: 68px;
  }

  .featured-grid,
  .movie-grid,
  .compact-grid,
  .catalog-grid,
  .category-grid,
  .category-overview-grid,
  .rank-spotlight-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .video-shell,
  .video-player {
    min-height: 310px;
  }

  .player-start span {
    width: 76px;
    height: 76px;
    font-size: 34px;
  }
}
