:root {
  color-scheme: dark;
  --bg: #090b14;
  --panel: rgba(17, 24, 39, 0.72);
  --panel-strong: rgba(17, 24, 39, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --yellow: #facc15;
  --pink: #ec4899;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(236, 72, 153, 0.18), transparent 30rem),
    radial-gradient(circle at 82% 10%, rgba(59, 130, 246, 0.18), transparent 32rem),
    linear-gradient(180deg, #111827 0%, #1f1235 38%, #090b14 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(49, 46, 129, 0.94), rgba(88, 28, 135, 0.94), rgba(131, 24, 67, 0.94));
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #111827;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  box-shadow: 0 10px 28px rgba(236, 72, 153, 0.34);
}

.brand-name {
  background: linear-gradient(90deg, #fde68a, #f9a8d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.site-menu a {
  position: relative;
  padding: 26px 0;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--yellow), var(--pink));
  transition: transform 0.2s ease;
}

.site-menu a:hover {
  color: #fde68a;
}

.site-menu a:hover::after {
  transform: scaleX(1);
}

.top-search,
.large-search {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.top-search input,
.large-search input {
  width: 210px;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 12px 16px;
  background: transparent;
}

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

.top-search button,
.large-search button {
  border: 0;
  color: #111827;
  font-weight: 800;
  padding: 12px 18px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 9px;
}

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

.hero {
  position: relative;
  height: min(720px, 76vh);
  min-height: 560px;
  overflow: hidden;
  background: #070812;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: scale(1.02);
  background-image:
    linear-gradient(90deg, rgba(9, 11, 20, 0.98) 0%, rgba(9, 11, 20, 0.76) 36%, rgba(9, 11, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(9, 11, 20, 0.98) 0%, transparent 44%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease, transform 1s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(0deg, #090b14, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 88px;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fde68a;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.hero h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.hero p,
.page-hero p {
  margin: 22px 0 0;
  color: rgba(226, 232, 240, 0.92);
  font-size: clamp(17px, 2.3vw, 22px);
  line-height: 1.7;
}

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

.hero-meta {
  margin: 24px 0 30px;
}

.hero-meta span,
.detail-meta span,
.meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.primary-btn {
  color: #111827;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  box-shadow: 0 18px 40px rgba(236, 72, 153, 0.25);
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

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

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.36);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 36px;
  background: linear-gradient(90deg, var(--yellow), var(--pink));
}

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

.content-section {
  padding: 56px 0;
}

.split-band {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(90deg, rgba(6, 95, 70, 0.22), rgba(15, 118, 110, 0.1));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.section-title span {
  color: #fb7185;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

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

.section-title a {
  color: #fde68a;
  font-weight: 900;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 204, 21, 0.35);
  background: rgba(30, 41, 59, 0.86);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 20%, rgba(250, 204, 21, 0.22), transparent 40%),
    linear-gradient(145deg, rgba(139, 92, 246, 0.28), rgba(236, 72, 153, 0.18));
}

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

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.05) 54%, transparent);
  opacity: 0.76;
}

.play-badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #111827;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-content {
  padding: 14px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-content p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 40px;
  margin: 9px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meta-row {
  gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
}

.meta-row span {
  min-height: 24px;
  padding: 4px 8px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.18);
}

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

.tag-row span {
  border-radius: 999px;
  padding: 4px 8px;
  color: #e9d5ff;
  font-size: 12px;
  background: rgba(139, 92, 246, 0.18);
}

.scroll-row {
  display: grid;
  grid-auto-columns: minmax(250px, 330px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 0 16px 18px 0;
  scroll-snap-type: x proximity;
}

.scroll-row .movie-card {
  scroll-snap-align: start;
}

.category-cloud,
.year-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-cloud a,
.year-chip,
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-cloud a:hover,
.year-chip:hover,
.pagination a:hover {
  color: #111827;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.mini-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 18px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.mini-card:hover {
  transform: translateX(4px);
  background: rgba(30, 41, 59, 0.82);
}

.mini-poster {
  display: block;
  overflow: hidden;
  width: 74px;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.28), rgba(236, 72, 153, 0.18));
}

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

.mini-card strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mini-card em {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-size: 12px;
  font-style: normal;
}

.cta-panel {
  margin-bottom: 60px;
  border-radius: 28px;
  padding: 46px;
  text-align: center;
  background:
    radial-gradient(circle at 10% 0%, rgba(250, 204, 21, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(88, 28, 135, 0.85), rgba(131, 24, 67, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 50px);
  letter-spacing: -0.05em;
}

.cta-panel p {
  max-width: 620px;
  margin: 16px auto 28px;
  color: var(--muted);
  line-height: 1.75;
}

.page-shell {
  padding: 40px 0 64px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 34px 0 20px;
  padding: clamp(38px, 7vw, 72px);
  background:
    radial-gradient(circle at 80% 0%, rgba(236, 72, 153, 0.28), transparent 32%),
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.24), transparent 30%),
    rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.small-hero h1 {
  max-width: 850px;
  font-size: clamp(38px, 6vw, 66px);
}

.small-hero p {
  max-width: 780px;
}

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

.category-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  padding: 22px;
  background-image:
    linear-gradient(0deg, rgba(8, 10, 20, 0.92), rgba(8, 10, 20, 0.18)),
    var(--card-image);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.33);
}

.category-card span {
  color: #fde68a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-card strong {
  margin-top: 8px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.category-card em {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 38px;
}

.pagination span {
  color: #111827;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
}

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

.rank-row {
  display: grid;
  grid-template-columns: 56px 78px 1fr auto;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
  transform: translateX(5px);
  background: rgba(30, 41, 59, 0.9);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #111827;
  font-weight: 950;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
}

.rank-row img {
  width: 78px;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.rank-info strong {
  display: block;
  font-size: 18px;
}

.rank-info em {
  display: block;
  margin-top: 5px;
  color: var(--soft);
  font-style: normal;
}

.rank-action {
  border-radius: 999px;
  padding: 9px 14px;
  color: #111827;
  font-weight: 900;
  background: #fde68a;
}

.large-search {
  width: min(680px, 100%);
  margin-top: 28px;
}

.large-search input {
  flex: 1;
  width: auto;
  padding: 16px 20px;
}

.large-search button {
  padding: 16px 24px;
}

.detail-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 70px;
}

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

.watch-main,
.detail-side {
  min-width: 0;
}

.player {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 30%, rgba(236, 72, 153, 0.18), transparent 40%),
    #000;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: #111827;
  font-size: 32px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  box-shadow: 0 24px 60px rgba(236, 72, 153, 0.35);
}

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

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

.detail-content {
  margin-top: 28px;
  border-radius: 26px;
  padding: clamp(24px, 5vw, 42px);
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-content h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-meta {
  margin: 18px 0 22px;
}

.detail-content .one-line {
  color: #fde68a;
  font-size: 19px;
  line-height: 1.7;
}

.detail-tags {
  margin: 20px 0 32px;
}

.detail-content h2,
.detail-side h2 {
  margin: 30px 0 12px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.detail-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.detail-side {
  position: sticky;
  top: 96px;
  border-radius: 26px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer {
  margin-top: 40px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), #020617);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding: 48px 0 34px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
}

.footer-grid p {
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.footer-grid a:hover {
  color: #fde68a;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 28px;
  color: var(--soft);
  text-align: center;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-menu,
  .top-search {
    display: none;
  }

  body.menu-open .site-menu,
  body.menu-open .top-search {
    display: flex;
  }

  body.menu-open .nav-shell {
    align-items: start;
    grid-template-columns: 1fr auto;
    padding: 15px 0;
  }

  body.menu-open .site-menu {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  body.menu-open .site-menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.menu-open .top-search {
    grid-column: 1 / -1;
    width: 100%;
  }

  body.menu-open .top-search input {
    flex: 1;
    width: auto;
  }

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

  .feature-grid,
  .watch-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 22px;
  }

  .hero {
    min-height: 620px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

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

  .card-content {
    padding: 12px;
  }

  .card-title {
    font-size: 15px;
  }

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

  .rank-row {
    grid-template-columns: 44px 58px 1fr;
  }

  .rank-action {
    display: none;
  }

  .page-hero,
  .detail-content,
  .cta-panel {
    border-radius: 22px;
    padding: 24px;
  }
}
