:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --orange-500: #f97316;
  --pink-500: #ec4899;
  --green-500: #22c55e;
  --purple-500: #a855f7;
  --red-500: #ef4444;
  --teal-500: #14b8a6;
  --shadow-soft: 0 24px 70px rgba(15, 23, 42, 0.16);
  --shadow-card: 0 12px 34px rgba(15, 23, 42, 0.12);
  --radius-xl: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: linear-gradient(180deg, var(--slate-50), #ffffff 36%, var(--slate-50));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  min-height: 100vh;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, var(--slate-950), var(--slate-800), var(--slate-950));
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.28);
}

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

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  color: #ffffff;
  font-weight: 900;
  font-size: 24px;
  box-shadow: 0 14px 34px rgba(6, 182, 212, 0.35);
}

.brand strong {
  display: block;
  line-height: 1.05;
  font-size: 21px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #e2e8f0;
  font-size: 15px;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-500));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--cyan-400);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-search {
  position: relative;
  flex: 0 1 270px;
}

.nav-search input,
.search-large input,
.local-filter input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  border-radius: 15px;
  background: rgba(15, 23, 42, 0.66);
  color: #ffffff;
  padding: 12px 46px 12px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-search input::placeholder,
.search-large input::placeholder,
.local-filter input::placeholder {
  color: #94a3b8;
}

.nav-search button,
.search-large button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

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

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

.mobile-nav a {
  display: block;
  padding: 12px 4px;
  color: #e2e8f0;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.25), transparent 34%), linear-gradient(135deg, var(--slate-950), #172554 58%, var(--slate-900));
}

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

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(15, 23, 42, 0.78) 42%, rgba(2, 6, 23, 0.26) 100%), linear-gradient(0deg, rgba(15, 23, 42, 0.92), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 44px;
  padding: 72px 0 96px;
}

.hero-kicker,
.section-kicker,
.badge-soft {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.13);
  color: #cffafe;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  margin: 22px 0 18px;
  max-width: 760px;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--cyan-400), #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 720px;
  margin: 0 0 26px;
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.85;
}

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.btn-ghost {
  color: var(--blue-600);
  background: #eff6ff;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.2);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-panel img {
  height: 350px;
  object-fit: cover;
}

.hero-panel-body {
  padding: 22px;
}

.meta-pills,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-pills span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
}

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

.hero-dots button {
  width: 38px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition: background 0.2s ease, width 0.2s ease;
}

.hero-dots button.is-active {
  width: 60px;
  background: var(--cyan-400);
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 42px 0 72px;
}

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

.section-head h2,
.page-title,
.detail-title {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.section-head p,
.page-intro,
.category-summary {
  margin: 10px 0 0;
  color: var(--slate-600);
  line-height: 1.8;
  font-size: 16px;
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.58);
  box-shadow: var(--shadow-card);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.72));
}

.card-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.play-float {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  box-shadow: 0 14px 24px rgba(6, 182, 212, 0.35);
}

.movie-card-body {
  padding: 17px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.movie-card h3 {
  margin: 10px 0 8px;
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card p {
  margin: 0 0 14px;
  color: #475569;
  line-height: 1.65;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card .tag-row {
  margin-top: auto;
}

.movie-card .tag-row span {
  background: #f1f5f9;
  color: #2563eb;
}

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

.category-card {
  position: relative;
  min-height: 190px;
  border-radius: 28px;
  padding: 26px;
  color: #ffffff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-900), var(--blue-600));
  box-shadow: var(--shadow-card);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -55% 25%;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(4px);
}

.category-card h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 950;
}

.category-card p {
  position: relative;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.category-card span {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.category-card[data-accent="orange"] {
  background: linear-gradient(135deg, #7c2d12, var(--orange-500));
}

.category-card[data-accent="purple"] {
  background: linear-gradient(135deg, #3b0764, var(--purple-500));
}

.category-card[data-accent="red"] {
  background: linear-gradient(135deg, #7f1d1d, var(--red-500));
}

.category-card[data-accent="pink"] {
  background: linear-gradient(135deg, #831843, var(--pink-500));
}

.category-card[data-accent="green"] {
  background: linear-gradient(135deg, #14532d, var(--green-500));
}

.category-card[data-accent="teal"] {
  background: linear-gradient(135deg, #134e4a, var(--teal-500));
}

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

.rank-item {
  display: grid;
  grid-template-columns: 72px 132px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.rank-num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #ffffff;
  font-weight: 950;
  font-size: 22px;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
}

.rank-thumb {
  width: 132px;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  object-fit: cover;
  background: var(--slate-800);
}

.rank-info h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 900;
}

.rank-info p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-hero {
  color: #ffffff;
  background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.26), transparent 34%), linear-gradient(135deg, var(--slate-950), #1e3a8a 60%, var(--slate-900));
  padding: 78px 0;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.045em;
}

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

.search-large,
.local-filter {
  position: relative;
  max-width: 720px;
  margin-top: 28px;
}

.local-filter {
  margin: 0 0 28px;
}

.local-filter input {
  border-color: #cbd5e1;
  color: var(--slate-900);
  background: #ffffff;
  padding-right: 16px;
}

.detail-hero {
  position: relative;
  min-height: 560px;
  color: #ffffff;
  overflow: hidden;
  background: var(--slate-950);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.26)), linear-gradient(0deg, rgba(2, 6, 23, 0.94), transparent 38%);
}

.detail-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  align-content: center;
  max-width: 850px;
  padding: 74px 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #bae6fd;
  font-size: 14px;
  font-weight: 700;
}

.detail-title {
  color: #ffffff;
  font-size: clamp(42px, 6vw, 76px);
}

.detail-desc {
  margin: 20px 0 24px;
  max-width: 760px;
  color: #dbeafe;
  line-height: 1.85;
  font-size: 19px;
}

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

.content-card,
.side-card {
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

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

.content-card h2,
.side-card h2 {
  margin: 0 0 16px;
  color: var(--slate-900);
  font-size: 26px;
  font-weight: 950;
}

.content-card p {
  color: #334155;
  line-height: 1.95;
  font-size: 16px;
  margin: 0 0 18px;
}

.player-shell {
  position: relative;
  border-radius: 26px 26px 0 0;
  background: #000000;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(2, 6, 23, 0.35);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18), rgba(2, 6, 23, 0.76));
}

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

.player-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  padding: 16px 25px 16px 18px;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 22px 54px rgba(6, 182, 212, 0.34);
}

.player-button span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.info-table {
  display: grid;
  gap: 12px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
  color: #475569;
}

.info-row strong {
  color: var(--slate-900);
}

.related-list {
  display: grid;
  gap: 13px;
}

.related-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.related-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  background: var(--slate-800);
}

.related-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 900;
}

.related-item p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.empty-state {
  border: 1px dashed #cbd5e1;
  border-radius: 24px;
  background: #ffffff;
  padding: 34px;
  color: #64748b;
  text-align: center;
}

.site-footer {
  margin-top: 36px;
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-900), #000000);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  padding: 54px 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-weight: 950;
}

.site-footer p,
.site-footer li {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 14px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding: 20px 0 28px;
  color: #64748b;
  font-size: 13px;
  text-align: center;
}

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

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

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

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

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

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

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-panel img {
    height: 260px;
  }

  .section-head {
    display: block;
  }

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

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

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

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

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

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

  .rank-num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 18px;
  }

  .rank-thumb {
    width: 96px;
  }

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

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