:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #059669;
  --brand-dark: #047857;
  --brand-soft: #d1fae5;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1180px;
  height: 68px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-logo,
.footer-logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #059669, #0f766e);
  -webkit-background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

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

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

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 999px;
}

.header-search input,
.hero-search input,
.filter-bar input,
.global-search-panel input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.header-search input {
  width: 150px;
  padding: 7px 10px;
}

.header-search button,
.hero-search button,
.global-search-panel button {
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 800;
  padding: 8px 15px;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #0f172a;
  margin: 5px 0;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 12px 22px 18px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

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

.mobile-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: #475569;
  font-weight: 700;
}

.mobile-link:hover {
  background: #ecfdf5;
  color: var(--brand);
}

.home-hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #020617;
}

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

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.72) 42%, rgba(2, 6, 23, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 90px 22px 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.16);
  color: #10b981;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
  width: min(760px, 100%);
  margin: 22px 0 16px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

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

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hero-meta span,
.detail-meta span,
.card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  color: #f8fafc;
  font-size: 12px;
  font-weight: 800;
}

.card-meta span {
  background: #ecfdf5;
  color: #047857;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-tags span,
.tag-row span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.tag-row span {
  background: #f1f5f9;
  color: #475569;
}

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

.primary-btn,
.ghost-btn,
.ghost-dark-btn,
.text-link,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  background: var(--brand);
  color: #ffffff;
  padding: 13px 22px;
  box-shadow: 0 18px 38px rgba(5, 150, 105, 0.35);
}

.ghost-btn,
.ghost-dark-btn {
  padding: 12px 21px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.ghost-dark-btn {
  color: var(--text);
  border-color: var(--line);
  background: #ffffff;
}

.primary-btn:hover,
.ghost-btn:hover,
.ghost-dark-btn:hover,
.section-link:hover,
.text-link:hover {
  transform: translateY(-2px);
}

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

.hero-dot {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

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

.hero-search {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 24px;
  width: min(820px, calc(100% - 44px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-search input {
  padding: 12px 16px;
}

.quick-category {
  margin-top: -1px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.quick-category-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.quick-category a {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 900;
  padding: 10px 16px;
}

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 22px;
}

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

.section-heading h2 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.section-link,
.text-link {
  color: var(--brand);
  background: #ecfdf5;
  padding: 10px 16px;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: var(--shadow);
}

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

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

.movie-card:hover .card-cover img,
.category-tile:hover img,
.compact-card:hover img {
  transform: scale(1.06);
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%) scale(0.82);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
  padding: 16px;
}

.card-body h2 {
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h2 a:hover,
.ranking-body h2 a:hover {
  color: var(--brand);
}

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

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

.movie-card-wide .card-cover {
  aspect-ratio: 5 / 7;
}

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

.rank-panel {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.rank-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
}

.rank-title a {
  color: var(--brand);
  font-size: 14px;
}

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

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

.rank-row:hover {
  background: #f8fafc;
}

.rank-num {
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
}

.rank-row img {
  width: 58px;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
  background: #0f172a;
}

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

.rank-info strong,
.compact-card strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info em,
.compact-card em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.rank-hot {
  color: #ef4444;
  font-size: 12px;
  font-weight: 900;
}

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

.category-preview-card,
.category-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.category-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 900;
}

.category-preview-head a {
  color: var(--brand);
  font-size: 14px;
}

.category-preview-card p,
.category-tile em {
  display: block;
  margin: 0 0 14px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.compact-list {
  display: grid;
  gap: 10px;
}

.compact-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.compact-card img {
  width: 56px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  background: #0f172a;
  transition: transform 0.35s ease;
}

.page-hero {
  background: radial-gradient(circle at 25% 20%, rgba(16, 185, 129, 0.26), transparent 30%), linear-gradient(135deg, #020617, #0f172a 55%, #064e3b);
  color: #ffffff;
}

.page-hero > div {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px;
}

.page-hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
}

.slim-hero > div,
.search-hero > div {
  padding-bottom: 70px;
}

.category-tile {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  color: #ffffff;
  background: #0f172a;
}

.tile-images {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  opacity: 0.55;
}

.tile-images::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.96) 84%);
}

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

.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
}

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

.category-tile em {
  color: #dbeafe;
}

.filter-bar {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.filter-bar input,
.global-search-panel input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fafc;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 800;
  padding: 9px 13px;
  cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
  background: #d1fae5;
  color: #047857;
}

.grid-empty {
  display: none;
  margin-top: 20px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--muted);
  text-align: center;
}

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

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

.ranking-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.ranking-cover {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0f172a;
}

.ranking-cover span {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
  padding: 5px 9px;
}

.ranking-cover img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.ranking-body h2 {
  margin: 2px 0 10px;
  line-height: 1.3;
}

.ranking-body p {
  color: var(--muted);
}

.global-search-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 26px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.breadcrumb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 22px 58px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border-radius: 30px;
  background: #0f172a;
  box-shadow: var(--shadow);
}

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

.detail-info h1 {
  margin: 16px 0 16px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-info p {
  color: var(--muted);
  font-size: 18px;
}

.detail-meta span {
  background: #ecfdf5;
  color: #047857;
}

.detail-tags {
  margin-top: 18px;
}

.player-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px 52px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: var(--shadow);
}

.player-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.18), rgba(2, 6, 23, 0.74));
  cursor: pointer;
}

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

.play-circle {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  font-size: 34px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.player-overlay strong {
  font-size: 22px;
}

.player-caption {
  padding: 18px 4px 0;
}

.player-caption h2 {
  margin: 0 0 6px;
  font-size: 26px;
}

.player-caption p {
  margin: 0;
  color: var(--muted);
}

.detail-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 22px 24px;
}

.detail-content section {
  margin-bottom: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

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

.detail-content p {
  margin: 0;
  color: #334155;
}

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

.movie-info-list div {
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
}

.movie-info-list dt {
  color: var(--muted);
  font-size: 13px;
}

.movie-info-list dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 22px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand p,
.footer-group a {
  color: var(--muted);
}

.footer-group h2 {
  margin: 0 0 12px;
  font-size: 17px;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 22px;
  color: var(--muted);
  text-align: center;
}

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

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

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

  .movie-grid,
  .feature-grid,
  .category-preview-grid,
  .category-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }

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

@media (max-width: 760px) {
  .header-inner {
    height: 62px;
    padding: 0 16px;
  }

  .site-logo,
  .footer-logo {
    font-size: 21px;
  }

  .home-hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 76px 18px 154px;
  }

  .hero-meta span:nth-child(4) {
    display: none;
  }

  .hero-search,
  .global-search-panel {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .hero-search button,
  .global-search-panel button {
    border-radius: 16px;
  }

  .section-heading {
    display: block;
  }

  .section-link {
    margin-top: 14px;
  }

  .content-section {
    padding: 42px 16px;
  }

  .movie-grid,
  .movie-grid.compact,
  .feature-grid,
  .category-preview-grid,
  .category-tile-grid,
  .ranking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 13px;
  }

  .card-body h2 {
    font-size: 16px;
  }

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

  .detail-hero {
    grid-template-columns: 1fr;
    padding: 28px 16px 42px;
  }

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

  .player-section,
  .detail-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .movie-info-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .movie-grid,
  .movie-grid.compact,
  .feature-grid,
  .category-preview-grid,
  .category-tile-grid,
  .ranking-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-hot {
    display: none;
  }
}
