:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --red: #ef4444;
  --pink: #ec4899;
  --yellow: #facc15;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.16);
  --soft-shadow: 0 10px 24px rgba(17, 24, 39, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.28);
}

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

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

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.brand-mark span {
  position: absolute;
  left: 15px;
  top: 11px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.9;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-weight: 700;
}

.desktop-nav a,
.nav-dropdown button {
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a:hover,
.nav-dropdown button:hover {
  color: #fef08a;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  display: grid;
  min-width: 210px;
  padding: 10px;
  color: var(--gray-800);
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.dropdown-panel a {
  color: var(--gray-700);
  padding: 10px 12px;
  border-radius: 10px;
}

.dropdown-panel a:hover {
  color: var(--orange-dark);
  background: #fff7ed;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search,
.mobile-search,
.hero-search {
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.header-search {
  padding: 5px 6px 5px 16px;
}

.header-search input,
.mobile-search input,
.hero-search input {
  min-width: 0;
  color: var(--white);
  border: 0;
  outline: 0;
  background: transparent;
}

.header-search input::placeholder,
.mobile-search input::placeholder,
.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search button,
.mobile-search button,
.hero-search button {
  border: 0;
  border-radius: 999px;
  color: var(--orange-dark);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.header-search button {
  padding: 8px 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

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

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

.mobile-search {
  padding: 6px;
  margin-bottom: 14px;
}

.mobile-search input {
  flex: 1;
  padding: 10px 14px;
}

.mobile-search button {
  padding: 10px 16px;
}

.mobile-panel nav,
.mobile-category-links {
  display: grid;
  gap: 8px;
}

.mobile-panel nav a {
  padding: 10px 0;
  font-weight: 700;
}

.mobile-category-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 6px;
}

.hero,
.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, #fb923c 0%, #ef4444 52%, #ec4899 100%);
}

.hero {
  min-height: 610px;
  padding: 76px 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(36px);
}

.hero-orb-one {
  top: 62px;
  left: 8%;
  width: 240px;
  height: 240px;
}

.hero-orb-two {
  right: 8%;
  bottom: 52px;
  width: 330px;
  height: 330px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--orange-dark);
}

.hero-copy h1,
.page-hero h1,
.detail-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p,
.detail-title-row p {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 20px;
  opacity: 0.95;
}

.hero-search {
  width: min(100%, 620px);
  margin-top: 30px;
  padding: 8px;
}

.hero-search input {
  flex: 1;
  padding: 14px 18px;
  font-size: 16px;
}

.hero-search button {
  padding: 14px 22px;
}

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

.btn,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.btn-light {
  color: var(--orange-dark);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.24);
}

.btn-ghost {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-carousel {
  position: relative;
  min-height: 470px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(17, 24, 39, 0.36);
  background: rgba(17, 24, 39, 0.22);
}

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

.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.32) 52%, rgba(17, 24, 39, 0.08));
}

.hero-caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.hero-label,
.type-badge,
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.hero-caption h2 {
  margin: 12px 0 8px;
  font-size: 34px;
  line-height: 1.15;
}

.hero-caption p {
  max-width: 520px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 28px;
  background: var(--white);
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: linear-gradient(135deg, #fff7ed 0%, #fdf2f8 100%);
}

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

.section-head.no-gap {
  margin-bottom: 24px;
}

.section-head h2,
.panel-head h2,
.detail-article h2 {
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.section-head p,
.panel-head p {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--gray-500);
}

.section-more {
  color: var(--red);
  background: #fee2e2;
}

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

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

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

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

.movie-card {
  display: grid;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gray-900);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.76), rgba(17, 24, 39, 0.08) 52%, rgba(17, 24, 39, 0));
}

.type-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(239, 68, 68, 0.92);
}

.rank-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(249, 115, 22, 0.94);
}

.play-hover,
.play-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.play-hover span,
.play-ring span {
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--red);
}

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

.card-content {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.card-content strong {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 17px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compact-card .card-content strong {
  min-height: 44px;
  font-size: 16px;
}

.card-content small,
.card-desc {
  color: var(--gray-500);
  font-size: 13px;
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 40px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: #ffedd5;
  font-size: 12px;
  font-weight: 800;
}

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

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
  background: var(--gray-900);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.45s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.18));
}

.category-tile span {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
}

.category-tile strong {
  font-size: 24px;
  line-height: 1.15;
}

.category-tile small {
  color: rgba(255, 255, 255, 0.84);
}

.split-layout,
.ranking-page-grid,
.detail-layout {
  display: grid;
  align-items: start;
  gap: 32px;
}

.split-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.ranking-page-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.ranking-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.sticky-panel {
  position: sticky;
  top: 104px;
}

.panel-head {
  margin-bottom: 4px;
}

.rank-item {
  display: grid;
  grid-template-columns: 34px 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: #fff7ed;
  transform: translateX(4px);
}

.rank-index {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-weight: 900;
}

.rank-item img {
  width: 54px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--gray-900);
}

.rank-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.rank-copy strong,
.rank-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-copy small {
  color: var(--gray-500);
  font-size: 12px;
}

.rank-score {
  color: var(--orange-dark);
  font-weight: 900;
}

.page-hero.small-hero,
.detail-hero {
  padding: 58px 0;
}

.page-hero h1,
.detail-hero h1 {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 56px);
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 16px;
  padding: 18px;
  margin-bottom: 30px;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.filter-field {
  display: grid;
  gap: 8px;
  min-width: 170px;
}

.filter-field.grow {
  flex: 1 1 320px;
}

.filter-field label {
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 900;
}

.filter-field input,
.filter-field select {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  outline: 0;
  background: var(--white);
}

.filter-field input:focus,
.filter-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.filter-status {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-weight: 900;
}

[data-card].is-hidden {
  display: none;
}

.detail-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

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

.player-section {
  padding: 38px 0;
  background: #0f172a;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.62));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-shell.is-ready .video-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-overlay .play-ring {
  position: relative;
  left: auto;
  top: auto;
  width: 86px;
  height: 86px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(239, 68, 68, 0.32);
  opacity: 1;
  transform: none;
}

.detail-content-section {
  background: var(--white);
}

.detail-layout {
  grid-template-columns: 330px minmax(0, 1fr);
}

.detail-poster-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-poster-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--gray-900);
}

.detail-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
}

.detail-score strong {
  color: var(--orange-dark);
  font-size: 28px;
}

.detail-score span {
  color: var(--yellow);
  letter-spacing: 2px;
}

.detail-article {
  display: grid;
  gap: 20px;
}

.detail-article p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
}

.lead-text {
  padding: 18px 20px;
  border-left: 5px solid var(--orange);
  border-radius: 16px;
  background: #fff7ed;
  font-weight: 700;
}

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

.info-grid span {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: var(--gray-50);
}

.info-grid strong {
  color: var(--gray-500);
  font-size: 13px;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #1f2937, #111827);
}

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

.footer-brand {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.site-footer p {
  margin: 16px 0 0;
  color: #d1d5db;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
}

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

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

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  text-align: center;
}

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

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

  .hero-inner,
  .split-layout,
  .ranking-page-grid {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .sticky-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero-inner,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    min-height: 420px;
  }

  .section-head,
  .detail-title-row {
    align-items: start;
    flex-direction: column;
  }

  .detail-poster-card {
    max-width: 360px;
  }
}

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

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

  .brand-copy strong {
    font-size: 20px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0;
  }

  .hero-copy p,
  .page-hero p,
  .detail-title-row p {
    font-size: 17px;
  }

  .hero-search {
    align-items: stretch;
    flex-direction: column;
    border-radius: 22px;
  }

  .hero-search button {
    width: 100%;
  }

  .hero-carousel {
    min-height: 390px;
    border-radius: 22px;
  }

  .hero-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .hero-caption h2 {
    font-size: 26px;
  }

  .six-col,
  .five-col,
  .four-col,
  .category-grid,
  .large-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .section {
    padding: 52px 0;
  }

  .category-tile {
    min-height: 180px;
  }

  .card-content {
    padding: 13px;
  }

  .card-desc,
  .tag-row {
    display: none;
  }

  .rank-item {
    grid-template-columns: 30px 48px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }

  .video-shell {
    border-radius: 18px;
  }

  .video-overlay .play-ring {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 420px) {
  .six-col,
  .five-col,
  .four-col,
  .category-grid,
  .large-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .mobile-category-links {
    grid-template-columns: 1fr;
  }
}
