:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: #1e293b;
  --bg-card-strong: #263449;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --amber: #f59e0b;
  --amber-strong: #d97706;
  --red: #ef4444;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fbbf24, #d97706);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 2px;
  color: #fde68a;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  white-space: nowrap;
}

.nav-link {
  color: #e2e8f0;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.header-search {
  width: 260px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.header-search input,
.mobile-search input,
.big-search input,
.search-page-form input,
.local-filter,
.type-filter {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.header-search input {
  padding: 10px 0 10px 16px;
}

.header-search button {
  width: 42px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px;
}

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

.mobile-search {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.mobile-search input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
}

.mobile-search button,
.big-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: white;
  font-weight: 700;
  background: var(--amber);
  cursor: pointer;
}

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

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.9);
  color: var(--muted-strong);
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--bg-soft);
}

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::before,
.detail-hero::before,
.poster::before,
.horizontal-thumb::before,
.detail-poster::before,
.video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.45), transparent 28%),
    linear-gradient(135deg, #172554, #0f172a 55%, #111827);
  z-index: 0;
}

.cover-image.is-hidden {
  display: none;
}

.hero-shade,
.detail-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: var(--container);
}

.hero-pill,
.card-category,
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: white;
  background: var(--amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-pill {
  padding: 8px 16px;
  margin-bottom: 18px;
}

.eyebrow {
  padding: 5px 11px;
  margin-bottom: 12px;
  color: #fff7ed;
  text-transform: uppercase;
}

.hero h1 {
  width: min(780px, 100%);
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero p {
  width: min(680px, 100%);
  margin: 0 0 30px;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.primary-button,
.ghost-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
  min-height: 52px;
  padding: 0 28px;
  color: white;
  background: var(--amber);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.22);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--amber-strong);
}

.ghost-button {
  min-height: 52px;
  padding: 0 24px;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(10px);
}

.ghost-button:hover,
.section-link:hover {
  color: white;
  background: rgba(245, 158, 11, 0.18);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dot.is-active {
  width: 32px;
  background: var(--amber);
}

.search-band {
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.78);
}

.search-band-inner {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 32px;
  align-items: center;
  padding: 34px 0;
}

.search-band h2,
.section h2,
.filter-panel h2,
.page-hero h1,
.detail-info h1 {
  margin: 0;
}

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

.big-search,
.search-page-form {
  display: flex;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.78);
}

.big-search input,
.search-page-form input {
  padding: 13px 14px;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: rgba(15, 23, 42, 0.54);
}

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

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.16;
}

.section-link {
  min-height: 42px;
  padding: 0 18px;
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.38);
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.feature-side,
.ranking-list {
  display: grid;
  gap: 12px;
}

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

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

.movie-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.92);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: var(--shadow);
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0f172a;
}

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

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

.poster img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.85));
}

.card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 5px 10px;
  font-size: 12px;
}

.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 30px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: rgba(239, 68, 68, 0.92);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--amber);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
  padding: 17px;
}

.card-body h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: var(--amber);
}

.card-body p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #94a3b8;
  font-size: 12px;
}

.card-meta span {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span {
  padding: 4px 9px;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
  font-size: 12px;
}

.horizontal-card {
  display: grid;
  grid-template-columns: auto 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.82);
  transition: background 0.2s ease, transform 0.2s ease;
}

.horizontal-card:hover {
  background: rgba(51, 65, 85, 0.95);
  transform: translateX(4px);
}

.rank-num {
  min-width: 28px;
  color: var(--amber);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.horizontal-thumb {
  position: relative;
  width: 88px;
  height: 62px;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
}

.horizontal-thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.horizontal-info {
  min-width: 0;
}

.horizontal-info strong,
.horizontal-info small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.horizontal-info strong {
  color: #fff;
}

.horizontal-info small {
  color: var(--muted);
}

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

.category-tile {
  min-height: 184px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.22), transparent 32%),
    rgba(30, 41, 59, 0.86);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.45);
}

.category-tile span {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 900;
}

.category-tile p {
  margin: 0 0 18px;
  color: var(--muted);
}

.mini-links {
  display: grid;
  gap: 6px;
}

.mini-links a {
  overflow: hidden;
  color: #fde68a;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 288px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.scroll-controls {
  display: flex;
  gap: 8px;
}

.scroll-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(51, 65, 85, 0.92);
  font-size: 26px;
  cursor: pointer;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.compact-hero,
.category-hero {
  padding: 78px 0 62px;
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.22), transparent 32%),
    linear-gradient(135deg, #020617, #111827 58%, #1e293b);
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.12;
}

.page-hero p {
  width: min(760px, 100%);
  margin: 16px 0 0;
  color: var(--muted-strong);
  font-size: 18px;
}

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

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

.filter-panel {
  position: sticky;
  top: 75px;
  z-index: 20;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(14px);
}

.filter-inner {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 560px);
  gap: 22px;
  align-items: center;
  padding: 18px 0;
}

.filter-controls {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 12px;
}

.local-filter,
.type-filter {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
}

.type-filter {
  color: var(--muted-strong);
}

.type-filter option {
  color: #111827;
}

.empty-state {
  display: none;
  margin: 28px 0 0;
  padding: 22px;
  border: 1px dashed rgba(148, 163, 184, 0.38);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

.stacked-sections {
  display: grid;
  gap: 44px;
  padding: 56px 0;
}

.category-overview-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.62);
}

.detail-hero {
  min-height: 640px;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 64px 0 46px;
}

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

.detail-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.detail-poster img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info h1 {
  margin-top: 12px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 760px;
  color: #e5e7eb;
  font-size: 20px;
}

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

.detail-meta div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.62);
}

.detail-meta dt {
  color: var(--muted);
  font-size: 12px;
}

.detail-meta dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 800;
}

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

.player-section {
  padding-top: 52px;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.video-element {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000;
}

.player-poster {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.72)),
    transparent;
  cursor: pointer;
}

.player-poster.is-hidden {
  display: none;
}

.play-circle {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--amber);
  font-size: 34px;
  box-shadow: 0 18px 44px rgba(245, 158, 11, 0.36);
}

.player-poster strong {
  font-size: 24px;
}

.player-poster small {
  max-width: min(720px, 88%);
  overflow: hidden;
  color: #cbd5e1;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  z-index: 5;
  margin: 0;
  color: #fee2e2;
  text-align: center;
}

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

.text-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.82);
}

.text-panel p {
  margin: 14px 0 0;
  color: var(--muted-strong);
  font-size: 17px;
}

.search-page-form {
  width: min(760px, 100%);
  margin-top: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 46px 0;
}

.footer-grid p {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
}

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

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

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: #64748b;
  text-align: center;
}

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

  .menu-toggle {
    display: block;
  }

  .featured-grid,
  .search-band-inner,
  .filter-inner,
  .detail-layout,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-layout {
    align-items: start;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .hero {
    height: 540px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 86px;
  }

  .hero-arrow {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

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

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

  .filter-controls {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

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

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

  .horizontal-thumb {
    width: 76px;
    height: 54px;
  }
}

@media (max-width: 520px) {
  .mobile-nav,
  .card-grid,
  .card-grid--compact,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .big-search,
  .search-page-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .big-search button,
  .search-page-form button {
    min-height: 46px;
  }

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

  .player-poster small {
    display: none;
  }
}
