:root {
  --bg: #0f1020;
  --panel: rgba(31, 41, 55, 0.72);
  --panel-strong: #111827;
  --text: #ffffff;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --yellow: #facc15;
  --pink: #ec4899;
  --purple: #7c3aed;
  --indigo: #312e81;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.26), transparent 34%),
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.18), transparent 32%),
    linear-gradient(180deg, #0b1021 0%, #111827 45%, #030712 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, #312e81 0%, #581c87 52%, #831843 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-logo span:last-child {
  background: linear-gradient(90deg, #fde047, #f9a8d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: linear-gradient(135deg, #fde047, #fb7185);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.25);
  font-size: 15px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}

.desktop-nav a,
.nav-dropdown > button {
  position: relative;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-dropdown:hover > button {
  color: var(--yellow);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 190px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(17, 24, 39, 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 {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #e5e7eb;
}

.dropdown-panel a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-search {
  display: flex;
  align-items: center;
  min-width: 260px;
}

.header-search input,
.mobile-panel input,
.big-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  outline: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-panel input:focus,
.big-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(250, 204, 21, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.header-search input {
  height: 40px;
  padding: 0 16px;
  border-radius: 999px 0 0 999px;
}

.header-search button,
.mobile-panel button,
.big-search button {
  height: 40px;
  border: 0;
  color: #111827;
  background: #facc15;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button {
  padding: 0 18px;
  border-radius: 0 999px 999px 0;
}

.header-search button:hover,
.mobile-panel button:hover,
.big-search button:hover {
  background: #f59e0b;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
  color: #e5e7eb;
}

.mobile-panel form {
  display: flex;
  margin-top: 12px;
}

.mobile-panel input {
  height: 42px;
  padding: 0 14px;
  border-radius: 999px 0 0 999px;
}

.mobile-panel button {
  padding: 0 16px;
  border-radius: 0 999px 999px 0;
}

.hero-section {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  background: #030712;
}

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 7, 18, 0.96) 0%, rgba(17, 24, 39, 0.78) 42%, rgba(17, 24, 39, 0.32) 100%),
    linear-gradient(0deg, rgba(3, 7, 18, 0.96), transparent 48%);
}

.hero-copy {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 12vh;
  width: min(680px, calc(100% - 48px));
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.06;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 78px);
}

.hero-copy p {
  max-width: 640px;
  margin: 20px 0 24px;
  color: #d1d5db;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.75;
}

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

.hero-meta span,
.detail-meta span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(124, 58, 237, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

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

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(90deg, #eab308, #ec4899);
  box-shadow: 0 18px 42px rgba(236, 72, 153, 0.25);
}

.ghost-btn,
.section-link {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover {
  transform: translateY(-2px) scale(1.02);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-dot.active {
  width: 32px;
  background: #facc15;
}

.content-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: -42px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(17, 24, 39, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intro-strip h2,
.section-heading h2,
.site-footer h2,
.detail-copy h2 {
  margin: 0;
  color: #fff;
}

.intro-strip p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(26px, 4vw, 36px);
}

.section-heading a {
  color: var(--yellow);
  font-weight: 700;
}

.movie-grid {
  display: grid;
  gap: 20px;
}

.six-col {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(31, 41, 55, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(31, 41, 55, 0.88);
  box-shadow: 0 18px 46px rgba(124, 58, 237, 0.24);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(236, 72, 153, 0.2));
}

.poster-frame img,
.wide-card img,
.ranking-card img,
.category-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-frame img {
  transition: transform 0.35s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent 48%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.poster-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #111827;
  background: #facc15;
  font-size: 12px;
  font-weight: 900;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: rgba(250, 204, 21, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: 0.25s ease;
  font-weight: 900;
}

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

.movie-card-body {
  display: grid;
  gap: 7px;
  padding: 14px;
}

.movie-card-body strong,
.wide-card-content strong,
.ranking-copy strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.movie-card-body em,
.wide-card-content small,
.wide-card-content em,
.ranking-copy em,
.ranking-copy span {
  color: var(--soft);
  font-style: normal;
  line-height: 1.5;
}

.movie-card-body span {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.wide-card a {
  position: relative;
  display: block;
  min-height: 230px;
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  box-shadow: var(--shadow);
}

.wide-card img {
  position: absolute;
  inset: 0;
  transition: transform 0.35s ease;
}

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

.wide-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18));
}

.wide-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.category-grid,
.category-large-grid {
  display: grid;
  gap: 20px;
}

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

.category-tile {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.34), rgba(236, 72, 153, 0.18));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 204, 21, 0.32);
}

.category-tile span {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.category-tile strong {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-list a {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(31, 41, 55, 0.62);
  transition: 0.22s ease;
}

.rank-list a:hover {
  transform: translateX(5px);
  background: rgba(124, 58, 237, 0.32);
}

.rank-list span {
  color: var(--yellow);
  font-size: 20px;
  font-weight: 900;
}

.rank-list strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-list em {
  color: var(--soft);
  font-style: normal;
  font-size: 13px;
}

.page-hero {
  min-height: 340px;
  display: grid;
  place-items: end start;
  padding: 92px max(24px, calc((100vw - 1180px) / 2)) 54px;
  background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.32), transparent 36%),
    linear-gradient(135deg, rgba(49, 46, 129, 0.95), rgba(88, 28, 135, 0.92), rgba(15, 23, 42, 0.96));
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.category-card-large a {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(31, 41, 55, 0.62);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.category-card-large a:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 204, 21, 0.32);
}

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

.category-copy {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.category-copy strong {
  color: #fff;
  font-size: 22px;
}

.category-copy em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.filter-bar-section {
  padding-bottom: 14px;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(17, 24, 39, 0.7);
}

.filter-bar input,
.filter-bar select {
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
}

.filter-bar select option {
  color: #111827;
}

.ranking-grid {
  display: grid;
  gap: 16px;
}

.ranking-card a {
  display: grid;
  grid-template-columns: 72px 96px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(31, 41, 55, 0.62);
  transition: 0.25s ease;
}

.ranking-card a:hover {
  transform: translateY(-4px);
  background: rgba(88, 28, 135, 0.4);
}

.ranking-number {
  color: var(--yellow);
  font-size: 28px;
  font-weight: 900;
}

.ranking-card img {
  height: 132px;
  border-radius: 14px;
}

.ranking-copy {
  display: grid;
  gap: 8px;
}

.search-page-panel {
  padding-top: 34px;
}

.big-search {
  display: flex;
  max-width: 780px;
  margin: 0 auto 26px;
}

.big-search input {
  height: 56px;
  padding: 0 20px;
  border-radius: 999px 0 0 999px;
  font-size: 17px;
}

.big-search button {
  height: 56px;
  min-width: 128px;
  border-radius: 0 999px 999px 0;
  font-weight: 900;
}

.search-summary {
  min-height: 32px;
  margin-bottom: 18px;
  color: var(--muted);
  text-align: center;
}

.detail-hero {
  padding: 38px max(24px, calc((100vw - 1180px) / 2)) 54px;
  background: radial-gradient(circle at 22% 0%, rgba(236, 72, 153, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(49, 46, 129, 0.62));
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--soft);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--yellow);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 30px;
  align-items: center;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  color: #fff;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.player-overlay.hidden {
  display: none;
}

.player-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.player-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.12));
}

.play-orb {
  position: absolute;
  left: 50%;
  top: 48%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: linear-gradient(135deg, #fde047, #fb7185);
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.4);
  font-size: 30px;
  font-weight: 900;
}

.player-overlay strong {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 3;
  font-size: clamp(22px, 3vw, 36px);
  text-align: left;
}

.detail-info h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.detail-info p {
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-copy {
  max-width: 920px;
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.9;
}

.detail-copy h2 {
  margin: 22px 0 12px;
  font-size: 28px;
}

.detail-copy p {
  margin: 0 0 18px;
}

.site-footer {
  margin-top: 48px;
  padding: 56px max(24px, calc((100vw - 1180px) / 2)) 24px;
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #030712);
}

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

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 20px;
}

.site-footer p,
.site-footer li {
  color: var(--soft);
  line-height: 1.7;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  text-align: center;
}

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

@media (max-width: 1120px) {
  .six-col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

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

@media (max-width: 860px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

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

  .mobile-panel.open {
    display: block;
  }

  .hero-section {
    min-height: 72vh;
  }

  .hero-copy {
    bottom: 88px;
  }

  .intro-strip,
  .section-heading,
  .filter-bar {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .rank-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rank-list a {
    grid-template-columns: 48px 1fr;
  }

  .rank-list em {
    grid-column: 2;
  }

  .ranking-card a {
    grid-template-columns: 56px 82px 1fr;
    gap: 12px;
  }

  .ranking-card img {
    height: 116px;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 66px;
  }

  .site-logo {
    font-size: 20px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

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

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

  .content-section {
    padding: 38px 0;
  }

  .six-col,
  .category-movie-grid,
  .wide-grid,
  .category-grid,
  .category-large-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .wide-card a {
    min-height: 210px;
  }

  .category-card-large a {
    grid-template-rows: 142px 1fr;
    min-height: 284px;
  }

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

  .movie-card-body strong {
    font-size: 14px;
  }

  .movie-card-body span {
    display: none;
  }

  .page-hero {
    min-height: 280px;
    padding-top: 70px;
  }

  .detail-hero {
    padding-top: 26px;
  }

  .player-card {
    border-radius: 18px;
  }

  .play-orb {
    width: 62px;
    height: 62px;
    font-size: 23px;
  }

  .player-overlay strong {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 22px;
  }

  .big-search button {
    min-width: 92px;
  }
}
