*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-deep: #020617;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(30, 41, 59, 0.92);
  --line: rgba(96, 165, 250, 0.22);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --orange: #f97316;
  --yellow: #facc15;
  --radius: 18px;
  --shadow: 0 22px 55px rgba(2, 6, 23, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: radial-gradient(circle at 18% 5%, rgba(37, 99, 235, 0.35), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(34, 211, 238, 0.2), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #111827 52%, #020617 100%);
  color: var(--text);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.92), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.3);
  backdrop-filter: blur(18px);
}

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

.header-shell {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  color: white;
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.2);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: #dbeafe;
  font-size: 15px;
  padding: 8px 4px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.header-search {
  width: 290px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 5px 6px 5px 15px;
}

.header-search input,
.mobile-panel input,
.hero-search-card input,
.filter-panel input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
}

.header-search input::placeholder,
.mobile-panel input::placeholder,
.hero-search-card input::placeholder,
.filter-panel input::placeholder {
  color: #94a3b8;
}

.header-search button,
.mobile-panel button,
.hero-search-card button {
  border: 0;
  color: white;
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  color: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding: 16px;
  background: rgba(15, 23, 42, 0.98);
}

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

.mobile-panel nav,
.mobile-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-panel form {
  margin: 14px 0;
  display: flex;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 6px 6px 6px 14px;
}

.mobile-categories a {
  color: var(--soft);
  font-size: 14px;
}

.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #020617;
}

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

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.9s ease;
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.58) 48%, rgba(15, 23, 42, 0.18) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.35) 55%, rgba(2, 6, 23, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 0 130px;
  max-width: 1180px;
}

.hero-kicker,
.page-hero-small span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 16px;
  border-radius: 999px;
  color: white;
  font-size: 14px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.2);
}

.hero-content h1,
.hero-content h2 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-content h2 + p,
.hero-content h1 + h2 + p {
  margin-top: 4px;
}

.hero-content p {
  max-width: 740px;
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: clamp(16px, 2vw, 20px);
}

.hero-meta,
.detail-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-meta span,
.detail-meta-grid span {
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 14px;
}

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

.primary-btn,
.ghost-btn,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-btn {
  padding: 13px 28px;
  color: white;
  font-weight: 800;
  background: linear-gradient(90deg, #2563eb, #0891b2);
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.28);
}

.ghost-btn {
  padding: 12px 22px;
  border: 1px solid rgba(226, 232, 240, 0.22);
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.52);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.56);
  color: white;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: white;
}

.hero-search-card {
  position: absolute;
  right: max(16px, calc((100% - 1180px) / 2));
  bottom: 72px;
  z-index: 9;
  width: min(410px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-search-card form {
  display: flex;
  gap: 10px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 7px 7px 7px 16px;
  background: rgba(2, 6, 23, 0.58);
}

.hero-chip-row,
.filter-chips,
.tag-row,
.genre-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chip-row {
  margin-top: 14px;
}

.hero-chip-row a,
.filter-chips button,
.tag-row a,
.genre-links a {
  border: 1px solid rgba(96, 165, 250, 0.22);
  background: rgba(30, 41, 59, 0.72);
  color: #bfdbfe;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.page-stack {
  padding-top: 54px;
  padding-bottom: 64px;
}

.inner-page {
  min-height: 64vh;
}

.content-section {
  margin-bottom: 58px;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.2;
}

.section-icon {
  margin-right: 10px;
}

.section-more {
  padding: 9px 14px;
  color: #67e8f9;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(8, 47, 73, 0.35);
  white-space: nowrap;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.14);
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.54);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.24);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.38);
  background: rgba(30, 41, 59, 0.82);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.35), rgba(8, 145, 178, 0.18));
}

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

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

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.88);
  border-radius: 50%;
  color: white;
  background: rgba(15, 23, 42, 0.74);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.year-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 10px;
  color: white;
  font-size: 12px;
  background: rgba(2, 6, 23, 0.82);
}

.movie-content {
  padding: 14px;
}

.movie-title {
  display: block;
  color: white;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
}

.movie-title:hover,
.rank-main a:hover,
.category-mini-links a:hover,
.footer-list a:hover {
  color: #67e8f9;
}

.movie-content p,
.category-card p,
.category-overview-card p,
.page-hero-small p,
.detail-info p,
.detail-text-grid p,
.detail-extra dd,
.footer-brand p,
.rank-main p {
  color: var(--muted);
  line-height: 1.75;
}

.movie-content p {
  min-height: 46px;
  margin: 0 0 12px;
  font-size: 14px;
}

.movie-meta {
  color: var(--soft);
  font-size: 13px;
  margin-bottom: 10px;
}

.tag-row a {
  padding: 4px 8px;
  font-size: 12px;
}

.movie-card-horizontal {
  display: flex;
  min-width: 350px;
}

.movie-card-horizontal .movie-poster {
  width: 128px;
  flex: 0 0 128px;
  aspect-ratio: 3 / 4;
}

.movie-card-horizontal .movie-content p {
  min-height: auto;
}

.movie-card-compact .movie-content p,
.movie-card-compact .tag-row {
  display: none;
}

.horizontal-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 2px 18px;
  scrollbar-color: #38bdf8 rgba(15, 23, 42, 0.8);
}

.hot-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(30, 64, 175, 0.24), rgba(8, 145, 178, 0.16));
}

.hot-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.56);
}

.hot-rank,
.rank-number {
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.hot-rank {
  width: 40px;
  height: 40px;
}

.hot-row a {
  overflow: hidden;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hot-row span:not(.hot-rank),
.hot-row strong {
  color: var(--soft);
  font-size: 14px;
}

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

.category-card,
.category-overview-card,
.page-hero-small,
.filter-panel,
.detail-hero,
.detail-text-grid article,
.detail-extra,
.prev-next a,
.rank-list-row {
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.56);
  box-shadow: 0 16px 38px rgba(2, 6, 23, 0.22);
}

.category-card {
  display: block;
  padding: 14px;
}

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

.category-thumbs img,
.category-overview-visual img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
}

.category-card h3,
.category-overview-card h2,
.detail-text-grid h2,
.detail-extra h2 {
  margin: 0 0 8px;
}

.page-hero-small {
  padding: 34px;
  margin-bottom: 34px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.26), rgba(8, 145, 178, 0.12));
}

.page-hero-small h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
}

.category-overview-list {
  display: grid;
  gap: 20px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 20px;
}

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

.category-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.category-mini-links a {
  padding: 7px 10px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.55);
}

.filter-panel {
  margin-bottom: 32px;
  padding: 18px;
}

.filter-panel input {
  height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(2, 6, 23, 0.42);
}

.filter-chips {
  margin-top: 12px;
}

.filter-chips button {
  cursor: pointer;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--soft);
  margin-bottom: 18px;
}

.breadcrumb a:hover {
  color: #67e8f9;
}

.detail-hero {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.24), rgba(15, 23, 42, 0.7));
}

.detail-poster img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.detail-info h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.detail-player-section {
  margin-top: 28px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: #020617;
  box-shadow: var(--shadow);
}

.player-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

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

.big-play-button {
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 50%;
  color: white;
  font-size: 34px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 55px rgba(34, 211, 238, 0.36);
  cursor: pointer;
}

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

.detail-text-grid article,
.detail-extra {
  padding: 24px;
}

.detail-extra dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0 0 20px;
}

.detail-extra div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.5);
}

.detail-extra dt {
  color: var(--soft);
  font-size: 13px;
  margin-bottom: 4px;
}

.detail-extra dd {
  margin: 0;
}

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

.prev-next a {
  padding: 18px;
  color: #dbeafe;
}

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

.rank-list-row {
  display: grid;
  grid-template-columns: 56px 76px minmax(0, 1fr) 58px 76px;
  gap: 16px;
  align-items: center;
  padding: 12px;
}

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

.rank-cover img {
  width: 76px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.rank-main a {
  display: block;
  color: white;
  font-weight: 800;
  margin-bottom: 4px;
}

.rank-main p {
  margin: 0 0 4px;
  font-size: 14px;
}

.rank-main span,
.rank-list-row em {
  color: var(--soft);
  font-size: 13px;
  font-style: normal;
}

.rank-list-row strong {
  color: #facc15;
}

.site-footer {
  border-top: 1px solid rgba(96, 165, 250, 0.16);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), #020617);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 42px 0;
}

.footer-shell h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

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

.footer-list a,
.footer-bottom {
  color: var(--soft);
  font-size: 14px;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

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

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

  .hero-search-card {
    left: 16px;
    right: 16px;
    bottom: 68px;
  }
}

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

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

  .hero {
    height: 720px;
  }

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

  .hero-arrow {
    display: none;
  }

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

  .hot-panel,
  .detail-text-grid,
  .prev-next {
    grid-template-columns: 1fr;
  }

  .category-overview-card,
  .detail-hero,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .category-overview-visual {
    grid-template-columns: repeat(4, 1fr);
  }

  .rank-list-row {
    grid-template-columns: 42px 64px minmax(0, 1fr);
  }

  .rank-list-row strong,
  .rank-list-row em {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-shell,
  .page-shell,
  .footer-shell,
  .footer-bottom {
    width: min(100% - 22px, 1180px);
  }

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

  .hero {
    height: 680px;
  }

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

  .hero-search-card {
    bottom: 58px;
  }

  .hero-search-card form {
    border-radius: 22px;
    flex-direction: column;
    padding: 12px;
  }

  .movie-grid-three,
  .movie-grid-four,
  .movie-grid-five,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    min-width: 300px;
  }

  .movie-card-horizontal .movie-poster {
    width: 104px;
    flex-basis: 104px;
  }

  .hot-row {
    grid-template-columns: 40px minmax(0, 1fr) auto;
  }

  .hot-row span:not(.hot-rank) {
    display: none;
  }

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

  .player-frame {
    border-radius: 18px;
  }
}
