:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --red-500: #ef4444;
  --pink-500: #ec4899;
  --teal-500: #14b8a6;
  --cyan-500: #06b6d4;
  --emerald-500: #10b981;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.14);
  --shadow-strong: 0 25px 60px rgba(15, 23, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500), var(--amber-600));
  box-shadow: 0 10px 28px rgba(217, 119, 6, 0.28);
}

.nav-wrap {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08) rotate(-4deg);
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-size: 15px;
  font-weight: 650;
}

.main-nav a {
  opacity: 0.95;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--amber-100);
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 8px 11px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(217, 119, 6, 0.96);
}

.mobile-nav.is-open {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  color: var(--white);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 650;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--slate-900);
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 7s ease;
}

.hero-slide.is-active .hero-image {
  transform: scale(1.1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.58) 46%, rgba(15, 23, 42, 0.18) 100%);
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 12%;
  bottom: -120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.42), rgba(245, 158, 11, 0));
  filter: blur(12px);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100% - 1180px) / 2));
  bottom: 86px;
  width: min(680px, calc(100% - 64px));
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(245, 158, 11, 0.92);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.32);
  font-size: 13px;
  font-weight: 800;
}

.hero-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

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

.hero-tags {
  margin-bottom: 26px;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.card-tags .tag,
.detail-tags .tag {
  color: var(--gray-600);
  background: var(--gray-100);
}

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

.btn-primary,
.btn-secondary,
.btn-light,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.34);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-light:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.btn-light {
  color: var(--amber-600);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  color: var(--gray-700);
  background: var(--gray-100);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.32);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.52);
  transform: translateY(-50%) scale(1.05);
}

.slider-prev {
  left: 18px;
}

.slider-next {
  right: 18px;
}

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

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

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

.page-main {
  padding: 56px 0 72px;
}

.section {
  margin-bottom: 72px;
}

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

.section-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.25);
}

.section-icon.hot {
  background: linear-gradient(90deg, var(--red-500), var(--pink-500));
}

.section-icon.cool {
  background: linear-gradient(90deg, var(--teal-500), var(--cyan-500));
}

.section-icon.green {
  background: linear-gradient(90deg, var(--emerald-500), #22c55e);
}

.section-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  font-weight: 900;
  color: var(--gray-800);
}

.section-line {
  flex: 1;
  height: 4px;
  min-width: 50px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.32), rgba(245, 158, 11, 0));
}

.section-desc {
  margin: -12px 0 28px;
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 16px;
}

.panel {
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 32px;
}

.panel.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
  box-shadow: var(--shadow-strong);
}

.panel.dark .section-title,
.panel.dark h2,
.panel.dark h3 {
  color: var(--white);
}

.panel.dark .section-desc,
.panel.dark p {
  color: rgba(255, 255, 255, 0.72);
}

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

.movie-grid.compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.card-cover {
  position: relative;
  display: block;
  height: 226px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), #fed7aa);
}

.movie-grid.compact .card-cover {
  height: 190px;
}

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

.movie-card:hover .card-cover img {
  transform: scale(1.1);
}

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.02));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .card-cover::after {
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--white);
  background: var(--amber-500);
  font-size: 12px;
  font-weight: 850;
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-500);
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.card-body {
  padding: 16px;
}

.card-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  color: var(--gray-800);
  transition: color 0.2s ease;
}

.movie-card:hover .card-title {
  color: var(--amber-600);
}

.card-text {
  margin: 0 0 12px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
}

.clamp-1,
.clamp-2,
.clamp-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.clamp-1 {
  -webkit-line-clamp: 1;
}

.clamp-2 {
  -webkit-line-clamp: 2;
}

.clamp-3 {
  -webkit-line-clamp: 3;
}

.card-meta,
.detail-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--gray-500);
  font-size: 13px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -48px;
  bottom: -58px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.5), rgba(245, 158, 11, 0));
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.category-card h2,
.category-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
}

.category-card p,
.category-card ul {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.category-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  list-style: none;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr 160px 160px 160px;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-bar input,
.filter-bar select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  outline: none;
  background: var(--white);
  color: var(--gray-700);
  padding: 0 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.page-hero {
  border-radius: 30px;
  padding: 44px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -96px;
  top: -120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.4), rgba(249, 115, 22, 0));
}

.page-hero h1 {
  position: relative;
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 950;
}

.page-hero p {
  position: relative;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.85;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 74px 108px 1fr auto;
  gap: 18px;
  align-items: center;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.rank-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  font-size: 20px;
  font-weight: 950;
}

.rank-cover {
  width: 108px;
  height: 72px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--amber-100);
}

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

.rank-title {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 900;
  color: var(--gray-800);
}

.rank-desc {
  margin: 0 0 8px;
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 14px;
}

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

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

.player-card video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.2));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.player-button-mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.34);
  font-size: 34px;
  padding-left: 5px;
}

.player-message {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 5;
  display: none;
  border-radius: 14px;
  padding: 11px 14px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.72);
  font-size: 14px;
  text-align: center;
}

.player-message.is-visible {
  display: block;
}

.detail-info {
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 30px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gray-500);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--amber-600);
  font-weight: 750;
}

.detail-info h1 {
  margin: 0 0 14px;
  color: var(--gray-800);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.14;
  font-weight: 950;
}

.detail-lead {
  margin: 0 0 22px;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.8;
}

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

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 11px;
  background: var(--amber-50);
  color: var(--amber-600);
  font-weight: 800;
}

.content-panel {
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 34px;
}

.content-panel h2 {
  margin: 0 0 16px;
  color: var(--gray-800);
  font-size: 28px;
  font-weight: 950;
}

.content-panel p {
  margin: 0 0 18px;
  color: var(--gray-700);
  line-height: 1.92;
  font-size: 16px;
}

.prev-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.prev-next a {
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  transition: transform 0.22s ease;
}

.prev-next a:hover {
  transform: translateY(-3px);
}

.prev-next span {
  display: block;
  color: var(--gray-500);
  font-size: 13px;
  margin-bottom: 6px;
}

.prev-next strong {
  color: var(--gray-800);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
  padding: 44px 0 28px;
}

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

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-weight: 900;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

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

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

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

  .nav-toggle {
    display: inline-flex;
  }

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

  .hero-slider {
    height: 560px;
  }

  .hero-content {
    bottom: 78px;
  }

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

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

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

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

  .rank-item .btn-ghost {
    grid-column: 1 / -1;
  }

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

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

  .page-main {
    padding: 36px 0 54px;
  }

  .hero-slider {
    height: 620px;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 70px;
    width: auto;
  }

  .hero-actions,
  .section-actions,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-light,
  .btn-ghost {
    width: 100%;
  }

  .slider-prev,
  .slider-next {
    display: none;
  }

  .movie-grid,
  .movie-grid.compact,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .card-cover,
  .movie-grid.compact .card-cover {
    height: 240px;
  }

  .panel,
  .page-hero,
  .content-panel,
  .detail-info {
    border-radius: 22px;
    padding: 22px;
  }

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

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

  .rank-number {
    width: 48px;
    height: 48px;
  }

  .rank-cover {
    width: 100%;
    height: 190px;
  }

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

  .prev-next {
    grid-template-columns: 1fr;
  }
}
