:root {
  --color-bg: #f6f7fb;
  --color-surface: #ffffff;
  --color-ink: #151923;
  --color-muted: #6b7280;
  --color-line: #e5e7eb;
  --color-dark: #0b0f19;
  --color-dark-soft: #111827;
  --color-primary: #dc2626;
  --color-primary-dark: #b91c1c;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.10);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.92);
  color: #ffffff;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), #fb923c);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.35);
}

.brand-text {
  white-space: nowrap;
  font-size: 18px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link,
.mobile-nav-link {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.header-search,
.mobile-search {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.header-search input,
.mobile-search input {
  width: 220px;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 10px 14px;
  background: transparent;
  color: #ffffff;
}

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

.header-search button,
.mobile-search button {
  border: 0;
  padding: 0 16px;
  background: var(--color-primary);
  color: #ffffff;
  cursor: pointer;
}

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

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.mobile-drawer {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 14px 0;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
}

.hero-track,
.hero-slide,
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    radial-gradient(circle at 70% 20%, rgba(220, 38, 38, 0.26), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 0 150px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #fecaca;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.hero h1,
.page-hero h1,
.detail-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero p,
.page-hero p,
.detail-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 21px);
}

.hero-meta,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.hero-meta span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
}

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

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

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.26);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn.small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.btn.full {
  width: 100%;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.30);
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow--prev {
  left: 24px;
}

.hero-arrow--next {
  right: 24px;
}

.hero-bottom {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 7;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.hero-dots {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #ffffff;
}

.hero-thumbs {
  display: flex;
  gap: 10px;
}

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 170px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.hero-thumb.is-active {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.18);
}

.hero-thumb img {
  width: 42px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

.hero-thumb span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  font-weight: 700;
}

.hero-search,
.search-page-form {
  display: flex;
  overflow: hidden;
  min-width: min(460px, 100%);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.hero-search input,
.search-page-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 15px 18px;
}

.hero-search button,
.search-page-form button {
  border: 0;
  padding: 0 22px;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: #eef1f6;
}

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

.section-head.compact {
  align-items: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-note,
.category-overview-head p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.section-link {
  color: var(--color-primary);
  font-weight: 800;
}

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

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

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

.movie-card {
  display: block;
  min-width: 0;
  border-radius: var(--radius-md);
  color: var(--color-ink);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #d1d5db;
  box-shadow: var(--shadow-card);
}

.movie-card--wide .poster-wrap {
  aspect-ratio: 16 / 9;
}

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

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

.poster-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 0.22s ease, background 0.22s ease;
}

.movie-card:hover .poster-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.42);
}

.play-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.38);
}

.badge {
  position: absolute;
  top: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.year-badge {
  left: 10px;
  background: var(--color-primary);
}

.score-badge {
  right: 10px;
  background: rgba(0, 0, 0, 0.68);
}

.movie-card-body {
  display: grid;
  gap: 4px;
  padding: 12px 2px 0;
}

.movie-card-body strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
}

.movie-meta-line,
.movie-genre {
  overflow: hidden;
  color: var(--color-muted);
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
}

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

.category-tile,
.category-overview-card,
.content-card,
.side-card,
.ranking-panel {
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.category-tile {
  display: grid;
  gap: 12px;
  padding: 24px;
  min-height: 220px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.category-title {
  font-size: 24px;
  font-weight: 900;
}

.category-desc,
.category-count {
  color: var(--color-muted);
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.category-samples span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 12px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.ranking-panel {
  position: sticky;
  top: 96px;
  padding: 20px;
}

.ranking-title {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.ranking-title span {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ranking-title strong {
  font-size: 28px;
}

.rank-item {
  display: grid;
  grid-template-columns: 42px 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--color-line);
}

.rank-number {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
}

.rank-item img {
  width: 52px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

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

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

.rank-copy small,
.rank-views {
  color: var(--color-muted);
  font-size: 12px;
}

.page-hero {
  padding: 92px 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(220, 38, 38, 0.35), transparent 32%),
    linear-gradient(135deg, #111827, #0b0f19);
  color: #ffffff;
}

.page-hero--category {
  background:
    radial-gradient(circle at 80% 25%, rgba(251, 146, 60, 0.28), transparent 34%),
    linear-gradient(135deg, #111827, #171717);
}

.page-hero--ranking {
  background:
    radial-gradient(circle at 78% 22%, rgba(220, 38, 38, 0.35), transparent 30%),
    linear-gradient(135deg, #111827, #241212);
}

.page-hero--search {
  background:
    radial-gradient(circle at 76% 28%, rgba(59, 130, 246, 0.24), transparent 34%),
    linear-gradient(135deg, #111827, #0f172a);
}

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

.breadcrumb a:hover {
  color: #ffffff;
}

.category-overview-list {
  display: grid;
  gap: 28px;
  padding: 54px 0;
}

.category-overview-card {
  padding: 26px;
}

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.category-overview-head h2 {
  margin: 0;
  font-size: 30px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px 170px auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
}

.filter-bar input,
.filter-bar select {
  min-height: 46px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: #ffffff;
  padding: 0 14px;
  outline: none;
}

.filter-count {
  color: var(--color-muted);
  font-weight: 700;
}

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

.search-page-form {
  max-width: 760px;
  margin-top: 28px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  background: #000000;
  color: #ffffff;
}

.detail-bg,
.detail-bg-shade {
  position: absolute;
  inset: 0;
}

.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px);
  transform: scale(1.04);
}

.detail-bg-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent 55%);
}

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

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

.detail-section {
  padding-top: 38px;
}

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

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000000;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.26));
}

.player-card.is-playing .player-overlay {
  opacity: 0;
}

.player-play-button {
  width: 84px;
  height: 84px;
  border: 0;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 16px 38px rgba(220, 38, 38, 0.42);
}

.player-controlbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}

.player-controlbar button {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  padding: 8px 12px;
  cursor: pointer;
}

.player-progress {
  overflow: hidden;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.player-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-primary);
}

.player-status {
  position: absolute;
  left: 16px;
  top: 16px;
  max-width: calc(100% - 32px);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.content-card,
.side-card {
  padding: 24px;
}

.content-card h2,
.side-card h2 {
  margin: 24px 0 12px;
  font-size: 24px;
}

.content-card h2:first-of-type,
.side-card h2:first-child {
  margin-top: 0;
}

.content-card p {
  margin: 0;
  color: #374151;
  font-size: 16px;
}

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

.detail-meta-grid span {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 14px;
  background: #f3f4f6;
  color: #374151;
}

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

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

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}

.poster-side img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 16px;
  object-fit: cover;
}

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

.side-links a {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f3f4f6;
  color: #374151;
  font-weight: 700;
}

.side-links a:hover {
  color: var(--color-primary);
}

.site-footer {
  padding: 42px 0;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 20px;
}

.footer-grid p {
  max-width: 680px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

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

.empty-state {
  grid-column: 1 / -1;
  padding: 54px 20px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  color: var(--color-muted);
  text-align: center;
}

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

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

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

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

  .ranking-panel,
  .detail-side {
    position: static;
  }

  .hero-thumbs {
    display: none;
  }

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

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

  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }

  body.mobile-menu-open .mobile-drawer {
    display: block;
  }

  .hero,
  .hero-content {
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: 155px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-search,
  .search-page-form {
    min-width: 0;
    width: 100%;
  }

  .section {
    padding: 50px 0;
  }

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

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

  .ranking-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .brand-text {
    font-size: 16px;
  }

  .hero h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: 38px;
  }

  .hero-meta {
    display: none;
  }

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

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

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

  .rank-views {
    display: none;
  }

  .player-controlbar {
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  .player-controlbar button:last-child {
    display: none;
  }
}
