
:root {
  --orange: #f97316;
  --red: #ef4444;
  --pink: #ec4899;
  --green: #16a34a;
  --amber: #d97706;
  --rose: #e11d48;
  --teal: #0d9488;
  --blue: #2563eb;
  --slate: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f9fafb;
  --shadow: 0 15px 35px rgba(17, 24, 39, 0.12);
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--slate);
  background: #f3f4f6;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, #fed7aa, #fecdd3);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  height: 66px;
  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-size: 1.18rem;
  font-weight: 800;
  color: #111827;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 8px 22px rgba(239, 68, 68, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.96rem;
  font-weight: 650;
  color: #374151;
}

.nav-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 0;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 8px 11px;
  color: #374151;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 46px;
  color: #fff;
  background: linear-gradient(105deg, #f97316 0%, #ef4444 48%, #ec4899 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-glow.one {
  width: 360px;
  height: 360px;
  background: #fff;
  left: -120px;
  top: -120px;
}

.hero-glow.two {
  width: 460px;
  height: 460px;
  background: #fed7aa;
  right: -160px;
  bottom: -200px;
}

.hero-slider {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 472px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 42px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(2.55rem, 6vw, 4.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.16;
}

.hero-copy p {
  max-width: 710px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
}

.hero-tags span,
.detail-tags span {
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.btn,
.hero-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary,
.hero-search button {
  color: var(--orange);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn.small {
  min-height: 38px;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.hero-poster {
  position: relative;
  display: block;
  width: min(410px, 100%);
  justify-self: end;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.36);
  transform: rotate(2deg);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.5));
}

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

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
  width: 56px;
  background: #fff;
}

.hero-search {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  width: min(760px, calc(100% - 32px));
  margin: 10px auto 22px;
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(14px);
}

.hero-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  color: #111827;
  background: #fff;
}

.hero-stats {
  position: relative;
  z-index: 4;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stats a {
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-stats span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
}

.section-block,
.inner-page,
.detail-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-block {
  padding: 66px 0;
}

.no-pad-top {
  padding-top: 0;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.section-head a {
  color: var(--orange);
  font-weight: 800;
}

.section-kicker {
  color: #2563eb;
  background: #dbeafe;
}

.section-kicker.green {
  color: #16a34a;
  background: #dcfce7;
}

.section-kicker.amber {
  color: #d97706;
  background: #fef3c7;
}

.section-kicker.rose {
  color: #e11d48;
  background: #ffe4e6;
}

.section-kicker.teal {
  color: #0d9488;
  background: #ccfbf1;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  box-shadow: var(--shadow);
}

.feature-card.wide {
  grid-row: span 2;
  grid-column: span 2;
}

.feature-card a,
.feature-card img,
.feature-shade {
  position: absolute;
  inset: 0;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.feature-card:hover img,
.movie-card:hover img,
.rank-item:hover img,
.masonry-card:hover img,
.category-tile:hover img,
.compact-card:hover img {
  transform: scale(1.08);
}

.feature-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.82));
}

.feature-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
}

.feature-content span,
.masonry-card span {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 10px;
  color: #fff;
  background: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
}

.feature-content h3 {
  margin: 10px 0 8px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.feature-card.wide h3 {
  font-size: 2rem;
}

.feature-content p,
.feature-content div {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.category-tile {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.movie-card:hover,
.rank-item:hover,
.masonry-card:hover,
.category-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.16);
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.category-thumbs img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-tile h3,
.movie-card h3,
.rank-item h3,
.masonry-card h3,
.category-panel h2,
.detail-info h1 {
  margin: 0;
  line-height: 1.25;
}

.category-tile p,
.movie-card p,
.rank-item p,
.masonry-card p,
.page-hero p,
.detail-info p,
.detail-content p,
.site-footer p {
  color: var(--muted);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}

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

.poster-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 8px;
  padding: 4px 7px;
  color: #fff;
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
}

.card-body {
  padding: 14px;
}

.card-body h3 {
  min-height: 2.5em;
  margin-bottom: 8px;
  font-size: 0.96rem;
}

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

.card-body p {
  min-height: 3.1em;
  margin: 0 0 12px;
  font-size: 0.86rem;
}

.card-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #6b7280;
  font-size: 0.8rem;
}

.soft-bg,
.masonry-block {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

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

.home-rank-list {
  grid-template-columns: repeat(2, 1fr);
}

.rank-item {
  display: grid;
  grid-template-columns: 132px 52px 1fr;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-cover {
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.rank-cover img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.rank-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  text-align: center;
}

.rank-content h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.rank-content p {
  margin: 0 0 10px;
  font-size: 0.92rem;
}

.masonry-grid {
  columns: 4 230px;
  column-gap: 20px;
}

.masonry-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  break-inside: avoid;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.masonry-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.masonry-card span,
.masonry-card h3,
.masonry-card p {
  margin-left: 16px;
  margin-right: 16px;
}

.masonry-card span {
  margin-top: 16px;
  background: var(--rose);
}

.masonry-card h3 {
  margin-top: 10px;
  margin-bottom: 8px;
}

.masonry-card p {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.inner-page,
.detail-page {
  padding: 28px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 0.9rem;
}

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

.page-hero {
  overflow: hidden;
  border-radius: 28px;
  margin-bottom: 34px;
  padding: 46px;
  color: #fff;
  background: linear-gradient(105deg, #f97316 0%, #ef4444 52%, #ec4899 100%);
  box-shadow: var(--shadow);
}

.page-hero.slim {
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 12px;
  max-width: 720px;
  margin: 26px auto 0;
}

.filter-bar.full {
  grid-template-columns: 1fr 180px 160px;
}

.category-panels {
  display: grid;
  gap: 22px;
}

.category-panel {
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

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

.compact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.compact-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #f9fafb;
}

.compact-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.compact-card span {
  display: block;
  padding: 10px;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.player-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  background: #050505;
  box-shadow: var(--shadow);
}

.player-panel video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  cursor: pointer;
  background: #000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
  cursor: pointer;
  z-index: 3;
}

.player-start span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  padding-left: 6px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.35);
  font-size: 2.2rem;
}

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

.detail-info {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  border-radius: 28px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-cover {
  width: 132px;
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.detail-info .eyebrow {
  color: var(--orange);
  background: #ffedd5;
}

.detail-info h1 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

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

.detail-info .detail-tags span {
  color: var(--orange);
  background: #fff7ed;
}

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

.detail-meta div {
  border-radius: 14px;
  padding: 12px;
  background: #f9fafb;
}

.detail-meta dt {
  color: #6b7280;
  font-size: 0.78rem;
}

.detail-meta dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.detail-content {
  margin: 28px 0 0;
  border-radius: 28px;
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-content h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.detail-content p {
  margin: 0 0 24px;
  font-size: 1rem;
}

.related-section {
  padding-bottom: 0;
}

.site-footer {
  background: #111827;
  color: #d1d5db;
  margin-top: 40px;
}

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

.footer-brand {
  color: #fff;
  margin-bottom: 12px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a:hover {
  color: #fb923c;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid #1f2937;
  padding: 20px 0;
  text-align: center;
  color: #9ca3af;
  font-size: 0.88rem;
}

@media (max-width: 1040px) {
  .poster-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-grid,
  .featured-grid,
  .home-rank-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.wide {
    grid-column: span 2;
  }

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

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

  .nav-links {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 18px;
    padding: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 11px 12px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: #fff7ed;
  }

  .hero-section {
    padding-top: 42px;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero-poster {
    justify-self: center;
    width: min(320px, 90%);
  }

  .hero-tags,
  .hero-actions {
    justify-content: center;
  }

  .hero-dots {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-search,
  .hero-stats,
  .filter-bar,
  .filter-bar.full {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .featured-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .feature-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .poster-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .rank-item {
    grid-template-columns: 96px 38px 1fr;
    gap: 12px;
  }

  .rank-num {
    font-size: 1.45rem;
  }

  .page-hero {
    padding: 32px 22px;
  }

  .detail-info {
    grid-template-columns: 100px 1fr;
  }

  .detail-cover {
    width: 100px;
  }

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

@media (max-width: 560px) {
  .poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-body {
    padding: 11px;
  }

  .rank-item {
    grid-template-columns: 82px 1fr;
  }

  .rank-num {
    position: absolute;
    margin: -62px 0 0 58px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--amber);
    font-size: 1rem;
  }

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

  .detail-cover {
    width: min(190px, 70%);
  }

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

  .player-panel,
  .player-panel video {
    min-height: 260px;
  }
}
