:root {
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: #111827;
  --card: #1e293b;
  --card-2: #172033;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --amber: #f59e0b;
  --orange: #ea580c;
  --blue: #38bdf8;
  --purple: #a855f7;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.42);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 30rem),
    linear-gradient(180deg, #0f172a 0%, #020617 42%, #020617 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.28);
}

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

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

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24, #ea580c);
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.36);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong,
.footer-brand {
  font-size: 20px;
  line-height: 1;
  background: linear-gradient(90deg, #fde68a, #fb923c);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link,
.mobile-link {
  color: #cbd5e1;
  border-radius: 12px;
  transition: 0.2s ease;
}

.nav-link {
  padding: 10px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: white;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(234, 88, 12, 0.95));
}

.header-search {
  display: flex;
  align-items: center;
  width: 280px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.78);
  border-radius: 999px;
  padding: 4px;
}

.header-search input,
.mobile-search input,
.quick-search-card input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.header-search input {
  padding: 8px 10px;
}

.header-search button,
.quick-search-card button {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.86);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 10px;
}

.mobile-nav {
  display: none;
  padding: 10px 16px 16px;
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.98);
}

.mobile-link {
  display: block;
  padding: 12px 16px;
}

.mobile-search {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.45);
}

.hero-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 420px;
  align-items: center;
  gap: 48px;
  padding: 72px max(32px, calc((100vw - 1180px) / 2)) 96px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.65s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-copy {
  max-width: 780px;
}

.hero-kicker,
.detail-kicker,
.ranking-hero span,
.page-hero span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  color: white;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.96), rgba(234, 88, 12, 0.96));
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.42);
}

.hero-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.85;
}

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

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.18);
  background: rgba(15, 23, 42, 0.58);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.28);
}

.btn.ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 42, 0.5);
}

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

.hero-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.hero-cover span,
.play-dot {
  position: absolute;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.32);
}

.hero-cover span {
  right: 20px;
  bottom: 20px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  font-weight: 800;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: white;
  font-size: 34px;
  background: rgba(0, 0, 0, 0.38);
  cursor: pointer;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

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

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

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

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

.hero-dot.active {
  width: 34px;
  background: var(--amber);
}

.quick-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  margin-top: -38px;
  position: relative;
  z-index: 8;
}

.quick-search-card,
.quick-categories,
.callout-card,
.category-overview-card,
.filter-panel,
.detail-hero,
.detail-article,
.watch-section {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92));
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.quick-search-card {
  padding: 26px;
}

.quick-search-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.quick-search-card form {
  display: flex;
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.32);
  padding: 8px;
  border-radius: 18px;
}

.quick-search-card input {
  padding: 10px 12px;
}

.quick-categories,
.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
  padding: 24px;
}

.quick-categories a,
.category-strip a,
.text-link {
  color: #fbbf24;
}

.quick-categories a,
.category-strip a {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.08);
  transition: 0.2s ease;
}

.quick-categories a:hover,
.category-strip a:hover {
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.section-block,
.page-main {
  padding: 56px 0;
}

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

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.section-title h2 {
  margin: 0;
  font-size: 28px;
}

.section-title p {
  margin: 4px 0 0;
  color: var(--muted);
}

.section-more {
  color: #fbbf24;
  font-weight: 800;
}

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

.movie-grid.large-gap {
  gap: 26px;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92));
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.42);
  box-shadow: 0 24px 52px rgba(245, 158, 11, 0.14);
}

.movie-card.horizontal {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
}

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

.movie-card.horizontal .poster {
  aspect-ratio: auto;
  min-height: 100%;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72));
}

.card-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  color: white;
  background: rgba(245, 158, 11, 0.92);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.play-dot {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.card-body {
  padding: 18px;
}

.card-body h3,
.compact-card h3,
.rank-info h2 {
  margin: 0;
  line-height: 1.35;
}

.card-body h3 {
  font-size: 18px;
}

.card-body h3 a:hover,
.compact-card h3 a:hover,
.rank-info h2 a:hover {
  color: #fbbf24;
}

.card-body p {
  min-height: 48px;
  margin: 10px 0 14px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
}

.card-meta,
.compact-meta,
.rank-info div,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.card-meta span:first-child,
.compact-meta span:nth-child(2),
.rank-info div span:first-child {
  color: #fbbf24;
}

.tag-row {
  margin-top: 14px;
}

.tinted-section {
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.38), rgba(15, 23, 42, 0.6));
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
}

.ranking-list,
.mini-list,
.rank-list-page {
  display: grid;
  gap: 14px;
}

.compact-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.58);
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
  background: rgba(51, 65, 85, 0.78);
  transform: translateX(4px);
}

.compact-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
}

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

.compact-card h3 {
  font-size: 16px;
}

.compact-card p {
  margin: 6px 0 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.rank-number {
  color: #0f172a;
  background: #fbbf24;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 900;
}

.callout-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.callout-card h2 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.15;
}

.callout-card p {
  color: #cbd5e1;
  line-height: 1.8;
}

.page-hero {
  margin-bottom: 30px;
  border-radius: 28px;
  padding: 42px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-hero.small h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
}

.page-hero.small p {
  max-width: 820px;
  margin: 18px 0 0;
  color: #cbd5e1;
  line-height: 1.8;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  padding: 24px;
}

.category-overview-copy h2 {
  margin: 0;
  font-size: 28px;
}

.category-overview-copy p {
  color: #cbd5e1;
  line-height: 1.8;
}

.filter-panel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
}

.filter-panel input,
.filter-panel select {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.32);
  padding: 0 14px;
}

.filter-panel input {
  flex: 1 1 260px;
}

.filter-panel select {
  flex: 0 0 180px;
}

.filter-years {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-years button {
  border: 1px solid var(--line);
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.62);
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
}

.filter-years button.active,
.filter-years button:hover {
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.crumbs a {
  color: #fbbf24;
}

.detail-hero {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  padding: 30px;
  margin-bottom: 30px;
}

.detail-cover {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

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

.lead-text {
  margin: 20px 0;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(2, 6, 23, 0.24);
}

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

.watch-section,
.detail-article {
  padding: 26px;
  margin-bottom: 30px;
}

.watch-section h2,
.detail-article h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: black;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  text-align: center;
}

.play-overlay.hidden {
  display: none;
}

.play-overlay-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.32);
  font-size: 34px;
}

.play-overlay strong {
  max-width: 90%;
  font-size: 20px;
}

.detail-article p {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.95;
}

.article-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.article-info-grid div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(2, 6, 23, 0.24);
}

.article-info-grid strong,
.article-info-grid span {
  display: block;
}

.article-info-grid strong {
  color: #fbbf24;
  margin-bottom: 8px;
}

.article-info-grid span {
  color: #cbd5e1;
}

.ranking-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.ranking-hero-inner h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 70px);
  line-height: 1;
}

.ranking-hero-inner p {
  max-width: 680px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

.rank-row {
  display: grid;
  grid-template-columns: 70px 148px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(30, 41, 59, 0.66);
}

.rank-index {
  color: #0f172a;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  border-radius: 18px;
  padding: 14px 0;
  text-align: center;
  font-weight: 900;
  font-size: 22px;
}

.rank-thumb {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-info p {
  margin: 8px 0 12px;
  color: #cbd5e1;
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), #020617);
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 220px minmax(0, 1fr);
  gap: 30px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links.wide {
  flex-flow: row wrap;
  align-content: flex-start;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: #fbbf24;
}

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

.movie-card.is-hidden {
  display: none;
}

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

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

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

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 28px;
    padding-top: 74px;
  }

  .hero-cover {
    display: none;
  }

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

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

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

  .article-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    height: 64px;
  }

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

  .brand-text small {
    display: none;
  }

  .hero-slider {
    min-height: 560px;
  }

  .hero-slide {
    padding: 58px 18px 82px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy p,
  .lead-text {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .quick-panel {
    margin-top: -24px;
  }

  .quick-search-card form,
  .filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .movie-card.horizontal {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .movie-card.horizontal .card-body p,
  .movie-card.horizontal .tag-row {
    display: none;
  }

  .card-body {
    padding: 13px;
  }

  .card-body h3 {
    font-size: 15px;
  }

  .card-body p {
    min-height: 0;
    font-size: 13px;
  }

  .page-hero,
  .detail-hero,
  .watch-section,
  .detail-article {
    padding: 20px;
    border-radius: 20px;
  }

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

  .article-info-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-info p {
    display: none;
  }

  .compact-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}
