:root {
  --bg: #080b10;
  --bg-soft: #0d1118;
  --surface: #111722;
  --surface-2: #161e2b;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f6f8fb;
  --muted: #97a2b4;
  --accent: #20b7ff;
  --accent-2: #695cff;
  --success: #58d68d;
  --warning: #ffc857;
  --danger: #ff5c73;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  --container: 1440px;
  --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(32, 183, 255, 0.07), transparent 28rem),
    var(--bg);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, ul, ol, dl, figure { margin-top: 0; }
ul, ol { padding-left: 0; }
::selection { color: #041018; background: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; z-index: 999; left: 18px; top: -60px; padding: 10px 16px; border-radius: 8px; color: #00121c; background: var(--accent); transition: top .2s; }
.skip-link:focus { top: 18px; }
.eyebrow { margin-bottom: 6px; color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

/* Header */
.site-header {
  position: sticky; z-index: 100; top: 0; height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(8, 11, 16, 0.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: background .2s, border-color .2s;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(8, 11, 16, 0.95); }
.header__inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand__picture { display: inline-flex; align-items: center; }
.brand__image { width: auto; max-width: 168px; height: 42px; object-fit: contain; }
.site-nav { display: flex; min-width: 0; align-items: center; gap: 24px; white-space: nowrap; }
.site-nav a { position: relative; color: #c9d0db; font-size: .94rem; font-weight: 600; transition: color .2s; }
.site-nav a::after { position: absolute; right: 50%; bottom: -9px; left: 50%; height: 2px; border-radius: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); content: ""; transition: right .2s, left .2s; }
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { right: 0; left: 0; }
.header-search { display: flex; width: min(330px, 25vw); height: 42px; margin-left: auto; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.055); transition: border-color .2s, background .2s; }
.header-search:focus-within { border-color: rgba(32,183,255,.6); background: rgba(255,255,255,.08); }
.header-search input { min-width: 0; flex: 1; padding: 0 4px 0 17px; color: var(--text); border: 0; outline: 0; background: transparent; }
.header-search input::placeholder { color: #758093; }
.header-search button { width: 44px; border: 0; cursor: pointer; background: transparent; }
.header-search svg { width: 19px; margin: auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2; }
.header__menu-button { display: none; width: 43px; height: 43px; margin-left: auto; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.header__menu-button > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; border-radius: 3px; background: currentColor; transition: transform .2s, opacity .2s; }

/* Buttons */
.button { display: inline-flex; min-height: 46px; padding: 0 20px; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 999px; font-size: .92rem; font-weight: 750; cursor: pointer; transition: transform .2s, border-color .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #04121b; background: linear-gradient(135deg, #4dd0ff, var(--accent)); box-shadow: 0 10px 30px rgba(32,183,255,.22); }
.button--primary:hover { box-shadow: 0 14px 38px rgba(32,183,255,.34); }
.button--ghost { border-color: var(--line-strong); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.button--ghost:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.11); }
.button--small { min-height: 40px; padding-inline: 16px; }
.text-button { padding: 4px 0; color: var(--accent); border: 0; cursor: pointer; background: none; font-weight: 700; }

/* Hero */
.hero { position: relative; min-height: 690px; margin-top: calc(var(--header-height) * -1); padding-top: var(--header-height); overflow: hidden; background: #070a0e; }
.hero__track { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; display: grid; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .65s ease, visibility .65s; }
.hero__slide.is-active { visibility: visible; opacity: 1; pointer-events: auto; }
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transform: scale(1.02); transition: transform 6s linear; }
.hero__slide.is-active .hero__media img { transform: scale(1.075); }
.hero__overlay { background: linear-gradient(90deg, rgba(5,7,11,.98) 0%, rgba(5,7,11,.83) 34%, rgba(5,7,11,.2) 70%), linear-gradient(0deg, #080b10 0%, transparent 46%), linear-gradient(180deg, rgba(5,7,11,.56) 0%, transparent 30%); }
.hero__content { position: relative; z-index: 2; align-self: center; padding-top: 58px; padding-bottom: 130px; }
.hero__content h1 { max-width: 760px; margin-bottom: 15px; font-size: clamp(2.7rem, 5.3vw, 5.7rem); line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; margin-bottom: 18px; color: #d7dce5; font-size: .92rem; }
.hero__meta strong { padding: 3px 9px; color: #091018; border-radius: 6px; background: var(--warning); }
.hero__description { display: -webkit-box; max-width: 640px; margin-bottom: 27px; overflow: hidden; color: #bdc5d1; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__controls { position: absolute; z-index: 5; right: 0; bottom: 106px; left: 0; display: flex; align-items: center; gap: 11px; }
.hero__controls > button { width: 38px; height: 38px; border: 1px solid var(--line-strong); border-radius: 50%; cursor: pointer; background: rgba(10,14,20,.62); font-size: 1.7rem; line-height: 1; }
.hero__dots { display: flex; gap: 7px; }
.hero__dots button { width: 22px; height: 4px; padding: 0; border: 0; border-radius: 4px; cursor: pointer; background: rgba(255,255,255,.28); transition: width .2s, background .2s; }
.hero__dots button.is-active { width: 42px; background: var(--accent); }
.hero-search-wrap { position: absolute; z-index: 4; right: 0; bottom: 28px; left: 0; }
.hero-search { display: flex; width: min(760px, 100%); padding: 10px 11px 10px 22px; align-items: center; gap: 18px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(15,21,30,.76); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.hero-search > label { flex: 0 0 auto; font-size: .88rem; font-weight: 800; }
.hero-search > div { display: flex; min-width: 0; flex: 1; align-items: center; }
.hero-search input { min-width: 0; height: 42px; flex: 1; padding: 0 14px; color: var(--text); border: 0; border-left: 1px solid var(--line); outline: 0; background: transparent; }
.hero-search input::placeholder { color: #778397; }
.hero-search .button { min-height: 40px; }

/* Sections */
.section { padding-block: 70px; }
.section--first { padding-top: 76px; }
.section--tinted { border-block: 1px solid rgba(255,255,255,.045); background: rgba(255,255,255,.018); }
.section--page { padding-top: 36px; }
.section__head { display: flex; margin-bottom: 25px; align-items: flex-end; justify-content: space-between; gap: 20px; }
.section__head h2 { margin-bottom: 0; font-size: clamp(1.55rem, 2.2vw, 2.15rem); line-height: 1.15; letter-spacing: -.025em; }
.section__head--compact { margin-bottom: 19px; }
.section__head--compact h2 { font-size: 1.55rem; }
.section__more { flex: 0 0 auto; color: var(--muted); font-size: .89rem; font-weight: 700; transition: color .2s; }
.section__more span { display: inline-block; margin-left: 5px; transition: transform .2s; }
.section__more:hover { color: var(--accent); }
.section__more:hover span { transform: translateX(4px); }
.section__count { color: var(--muted); font-size: .9rem; }
.split-sections { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 54px; }

/* Compact home category switcher */
.home-catalog { overflow: hidden; }
.home-catalog__head { margin-bottom: 18px; }
.home-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 660px;
  margin-bottom: 25px;
  padding: 5px;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}
.home-tab {
  min-height: 44px;
  padding: 8px 14px;
  color: var(--muted);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  font-weight: 800;
  transition: color .2s, background .2s, box-shadow .2s;
}
.home-tab:hover { color: var(--text); background: rgba(255,255,255,.055); }
.home-tab.is-active {
  color: #04121b;
  background: linear-gradient(135deg, #58d4ff, var(--accent));
  box-shadow: 0 8px 22px rgba(32,183,255,.2);
}
.home-tab-panel[hidden] { display: none; }
.home-tab-panel__head {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.home-tab-panel__head strong { font-size: 1.08rem; }
.home-tab-panel__head a { color: var(--muted); font-size: .82rem; font-weight: 750; }
.home-tab-panel__head a:hover { color: var(--accent); }
.home-subcategories {
  display: flex;
  margin: -4px 0 20px;
  padding: 2px 0 10px;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.home-subcategories a,
.home-subcategories button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  font-size: .78rem;
  font-weight: 750;
  cursor: pointer;
  scroll-snap-align: start;
}
.home-subcategories a:hover,
.home-subcategories a.is-active,
.home-subcategories button:hover,
.home-subcategories button.is-active { color: var(--text); border-color: rgba(32,183,255,.42); background: rgba(32,183,255,.11); }
.home-panel-empty { grid-column: 1 / -1; padding: 30px 18px; color: var(--muted); border: 1px dashed var(--line); border-radius: 14px; text-align: center; }

/* Cards */
.media-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 26px 18px; }
.media-grid--mini { grid-template-columns: repeat(3, minmax(0,1fr)); }
.media-card { min-width: 0; }
.media-card__cover { position: relative; display: block; aspect-ratio: 2 / 2.85; overflow: hidden; border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); background: var(--surface); box-shadow: 0 12px 30px rgba(0,0,0,.16); transform: translateZ(0); }
.media-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .38s, filter .38s; }
.media-card__shade { position: absolute; inset: 35% 0 0; opacity: .75; background: linear-gradient(transparent, rgba(3,5,8,.78)); transition: opacity .25s; }
.media-card__play { position: absolute; top: 50%; left: 50%; display: grid; width: 50px; height: 50px; place-items: center; padding-left: 3px; opacity: 0; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; background: rgba(4,8,13,.68); box-shadow: 0 8px 24px rgba(0,0,0,.34); transform: translate(-50%, -42%) scale(.86); transition: opacity .25s, transform .25s; backdrop-filter: blur(9px); }
.media-card__cover:hover img { filter: brightness(.76); transform: scale(1.055); }
.media-card__cover:hover .media-card__play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.media-card__score { position: absolute; top: 10px; left: 10px; padding: 3px 8px; color: #171200; border-radius: 6px; background: var(--warning); font-size: .76rem; font-weight: 850; }
.media-card__heat { position: absolute; top: 10px; right: 10px; z-index: 2; padding: 3px 8px; color: #eaf8ff; border: 1px solid rgba(49,195,255,.42); border-radius: 999px; background: rgba(4,14,24,.78); font-size: .7rem; font-weight: 800; backdrop-filter: blur(7px); }
.media-card__remark { position: absolute; right: 9px; bottom: 9px; max-width: calc(100% - 18px); padding: 3px 8px; overflow: hidden; color: #fff; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; background: rgba(3,6,10,.72); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; backdrop-filter: blur(7px); }
.auto-rank-grid > .media-card[hidden] { display: none; }
.media-card__body { padding: 11px 2px 0; }
.media-card__body h3 { margin-bottom: 4px; overflow: hidden; font-size: .98rem; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.media-card__body h3 a { transition: color .2s; }
.media-card__body h3 a:hover { color: var(--accent); }
.media-card__body p { display: flex; margin-bottom: 0; justify-content: space-between; gap: 8px; color: var(--muted); font-size: .76rem; }
.media-card__body p span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .25s, border-color .25s, box-shadow .25s; }
.news-card:hover { border-color: rgba(32,183,255,.3); box-shadow: 0 18px 40px rgba(0,0,0,.22); transform: translateY(-4px); }
.news-card__image { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card__image img { transform: scale(1.045); }
.news-card__body { padding: 19px 20px 21px; }
.news-card__meta { display: flex; margin-bottom: 9px; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .72rem; }
.news-card__meta span { color: var(--accent); font-weight: 750; }
.news-card h3 { display: -webkit-box; margin-bottom: 9px; overflow: hidden; font-size: 1.08rem; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.news-card h3 a:hover { color: var(--accent); }
.news-card__body > p:last-child { display: -webkit-box; margin-bottom: 0; overflow: hidden; color: var(--muted); font-size: .86rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }

/* Rank */
.rank-section { border-block: 1px solid var(--line); background: linear-gradient(135deg, rgba(32,183,255,.075), rgba(105,92,255,.05) 52%, transparent); }
.rank-columns { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.rank-panel { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(11,15,22,.75); box-shadow: 0 14px 40px rgba(0,0,0,.16); }
.rank-panel > h3 { padding-bottom: 17px; margin-bottom: 7px; border-bottom: 1px solid var(--line); font-size: 1.13rem; }
.rank-panel ol { margin: 0; list-style: none; }
.rank-panel li { display: grid; min-height: 45px; grid-template-columns: 34px minmax(0,1fr) auto; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.055); }
.rank-panel li:last-child { border-bottom: 0; }
.rank-index { color: #677487; font-weight: 850; font-variant-numeric: tabular-nums; }
.rank-panel li:nth-child(-n+3) .rank-index { color: var(--accent); }
.rank-panel li a { overflow: hidden; font-size: .89rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; transition: color .2s; }
.rank-panel li a:hover { color: var(--accent); }
.rank-panel li small { max-width: 90px; overflow: hidden; color: var(--muted); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.rank-page-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; padding-bottom: 80px; }
.rank-panel--large { padding: 30px; }
.rank-panel--large li { min-height: 50px; }
.rank-panel__head { display: flex; padding-bottom: 20px; margin-bottom: 8px; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.rank-panel__head > span { color: rgba(255,255,255,.12); font-size: 3.2rem; font-weight: 900; line-height: 1; }
.rank-panel__head h2 { margin-bottom: 0; font-size: 1.4rem; }

/* Category entries */
.category-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 13px; }
.category-grid a { display: flex; min-height: 86px; padding: 15px; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(140deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); transition: border-color .2s, transform .2s, background .2s; }
.category-grid a:hover { border-color: rgba(32,183,255,.36); background: rgba(32,183,255,.07); transform: translateY(-3px); }
.category-grid span { font-weight: 800; }
.category-grid small { color: var(--muted); font-size: .72rem; }

/* Generic page */
.page-main { min-height: 70vh; padding-top: 6px; }
.page-main--detail { position: relative; padding-top: 0; overflow: hidden; }
.breadcrumb { display: flex; min-height: 58px; align-items: center; gap: 9px; overflow: hidden; color: var(--muted); font-size: .78rem; white-space: nowrap; }
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb strong { overflow: hidden; color: #cbd2dd; font-weight: 600; text-overflow: ellipsis; }
.breadcrumb span { color: #4e5969; }
.page-hero { position: relative; padding: 65px 54px; margin-bottom: 20px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(circle at 80% 10%, rgba(32,183,255,.17), transparent 24rem), linear-gradient(135deg, #121a26, #0c1119); }
.page-hero::after { position: absolute; right: -40px; bottom: -100px; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; }
.page-hero h1 { max-width: 900px; margin-bottom: 10px; font-size: clamp(2.2rem,4.3vw,4.2rem); line-height: 1.08; letter-spacing: -.045em; }
.page-hero > p:last-child { max-width: 680px; margin-bottom: 0; color: var(--muted); }
.page-hero--compact { padding-block: 43px; }
.page-hero--news { background: radial-gradient(circle at 85% 20%, rgba(255,92,115,.2), transparent 24rem), linear-gradient(135deg,#17121a,#0c1119); }
.page-hero--topic { background: radial-gradient(circle at 85% 20%, rgba(105,92,255,.26), transparent 24rem), linear-gradient(135deg,#101322,#0c1119); }
.page-hero--rank { background: radial-gradient(circle at 85% 20%, rgba(255,200,87,.17), transparent 24rem), linear-gradient(135deg,#17150d,#0c1119); }
.subnav { display: flex; padding: 12px 0; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.subnav::-webkit-scrollbar { display: none; }
.subnav a { flex: 0 0 auto; padding: 7px 15px; color: var(--muted); border: 1px solid transparent; border-radius: 999px; font-size: .85rem; font-weight: 650; }
.subnav a:hover, .subnav a.is-active { color: var(--text); border-color: rgba(32,183,255,.25); background: rgba(32,183,255,.1); }
.filter-panel { padding: 13px 22px; margin-top: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.filter-row { display: grid; grid-template-columns: 70px minmax(0,1fr); padding: 11px 0; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.055); }
.filter-row:last-child { border-bottom: 0; }
.filter-row > strong { padding: 5px 0; color: #d5dbe5; font-size: .85rem; }
.filter-row > div { display: flex; flex-wrap: wrap; gap: 4px; }
.filter-row a { padding: 4px 11px; color: var(--muted); border-radius: 999px; font-size: .8rem; }
.filter-row a:hover, .filter-row a.is-active { color: var(--text); background: rgba(255,255,255,.075); }

/* Search */
.search-header { padding: 48px 0 30px; }
.search-header h1 { margin-bottom: 24px; font-size: clamp(2rem,4vw,3.8rem); letter-spacing: -.04em; }
.search-form-large { display: flex; width: min(760px,100%); padding: 8px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--surface); }
.search-form-large input { min-width: 0; flex: 1; padding: 0 18px; color: var(--text); border: 0; outline: 0; background: transparent; }
.content-with-aside { display: grid; grid-template-columns: minmax(0,1fr) 310px; padding-bottom: 70px; gap: 32px; }
.content-with-aside .media-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }

/* Sidebars */
.sidebar { min-width: 0; }
.sidebar-panel { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.sidebar-panel > h2 { padding-bottom: 14px; margin-bottom: 9px; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
.sidebar-rank { margin: 0; list-style: none; }
.sidebar-rank li { display: grid; min-height: 45px; grid-template-columns: 24px minmax(0,1fr); align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.05); }
.sidebar-rank li:last-child { border-bottom: 0; }
.sidebar-rank li > span { color: #667286; font-size: .78rem; font-weight: 850; }
.sidebar-rank li:nth-child(-n+3) > span { color: var(--accent); }
.sidebar-rank a { overflow: hidden; font-size: .84rem; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-rank a:hover { color: var(--accent); }
.sidebar-rank small { display: none; }

/* Detail */
.detail-backdrop { position: absolute; z-index: -1; top: 0; right: 0; left: 0; height: 620px; opacity: .18; pointer-events: none; }
.detail-backdrop::after { position: absolute; inset: 0; background: linear-gradient(0deg,var(--bg),transparent 70%), linear-gradient(90deg,var(--bg),transparent,var(--bg)); content: ""; }
.detail-backdrop img { width: 100%; height: 100%; object-fit: cover; filter: blur(8px); transform: scale(1.05); }
.detail-wrap > .breadcrumb { margin-bottom: 15px; }
.detail-hero { display: grid; grid-template-columns: 270px minmax(0,1fr); padding: 29px; gap: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(12,17,25,.79); box-shadow: var(--shadow); backdrop-filter: blur(23px); }
.detail-hero__poster { aspect-ratio: 2/2.85; overflow: hidden; border-radius: var(--radius); background: var(--surface-2); }
.detail-hero__poster img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero__content { position: relative; padding: 15px 0 5px; }
.detail-hero__content h1 { max-width: 900px; margin-bottom: 6px; font-size: clamp(2.3rem,4vw,4.5rem); line-height: 1.03; letter-spacing: -.045em; }
.detail-hero__sub { margin-bottom: 18px; color: var(--muted); }
.detail-rating { position: absolute; top: 15px; right: 5px; display: flex; flex-direction: column; align-items: flex-end; }
.detail-rating strong { color: var(--warning); font-size: 2.1rem; line-height: 1; }
.detail-rating span { color: var(--muted); font-size: .7rem; }
.detail-meta { display: grid; max-width: 920px; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 26px 0 22px; gap: 10px 24px; }
.detail-meta > div { display: grid; grid-template-columns: 76px minmax(0,1fr); }
.detail-meta dt { color: var(--muted); font-size: .82rem; }
.detail-meta dd { margin: 0; overflow: hidden; color: #d8dee7; font-size: .86rem; text-overflow: ellipsis; white-space: nowrap; }
.detail-blurb { display: -webkit-box; max-width: 940px; margin-bottom: 25px; overflow: hidden; color: #adb7c6; font-size: .9rem; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; padding-top: 30px; gap: 25px; }
.detail-panel { padding: 26px; margin-bottom: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(17,23,34,.75); }
.source-list { display: grid; gap: 11px; }
.source { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.025); }
.source summary { display: flex; min-height: 54px; padding: 0 16px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-weight: 750; }
.source summary::-webkit-details-marker { display: none; }
.source summary::after { color: var(--muted); content: "+"; font-size: 1.25rem; }
.source[open] summary::after { content: "−"; }
.source summary small { margin-left: auto; color: var(--muted); font-weight: 500; }
.source[open] summary { border-bottom: 1px solid var(--line); }
.episode-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); padding: 15px; gap: 8px; }
.episode-grid a { padding: 8px 7px; overflow: hidden; color: #bcc5d2; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.025); font-size: .78rem; text-align: center; text-overflow: ellipsis; white-space: nowrap; transition: color .2s, border-color .2s, background .2s; }
.episode-grid a:hover, .episode-grid a.is-active { color: var(--text); border-color: rgba(32,183,255,.4); background: rgba(32,183,255,.11); }
.prose { color: #c3cad4; line-height: 1.9; word-break: break-word; }
.prose img { height: auto; margin: 24px auto; border-radius: var(--radius-sm); }
.prose a { color: var(--accent); }
.prose__content { position: relative; max-height: 150px; overflow: hidden; }
.prose__content::after { position: absolute; right: 0; bottom: 0; left: 0; height: 65px; background: linear-gradient(transparent,var(--surface)); content: ""; }
[data-expandable].is-expanded .prose__content { max-height: none; }
[data-expandable].is-expanded .prose__content::after { display: none; }
.fact-list { margin: 0; }
.fact-list > div { display: flex; padding: 11px 0; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.055); }
.fact-list > div:last-child { border-bottom: 0; }
.fact-list dt { color: var(--muted); font-size: .82rem; }
.fact-list dd { margin: 0; font-size: .82rem; text-align: right; }

/* Player */
.play-title { display: flex; padding: 22px 0; align-items: end; justify-content: space-between; gap: 20px; }
.play-title h1 { margin-bottom: 0; font-size: clamp(1.65rem,3vw,2.8rem); letter-spacing: -.03em; }
.play-title h1 small { color: var(--muted); font-size: .52em; font-weight: 600; }
.player-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #020305; box-shadow: var(--shadow); }
.player-stage { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; }
.player-stage iframe, .player-stage video, .player-stage embed, .player-stage object { width: 100% !important; height: 100% !important; border: 0; }
.player-toolbar { display: flex; min-height: 54px; padding: 9px 17px; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); background: #0e131b; }
.player-toolbar p { margin: 0; color: var(--muted); font-size: .8rem; }
.player-toolbar nav { display: flex; gap: 8px; }
.player-toolbar a { padding: 5px 11px; border: 1px solid var(--line); border-radius: 7px; font-size: .78rem; }
.player-toolbar a:hover { color: var(--accent); border-color: rgba(32,183,255,.3); }
.play-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; padding-top: 25px; gap: 25px; }
.play-layout .detail-panel { margin-bottom: 0; }
.play-summary { display: grid; grid-template-columns: 92px minmax(0,1fr); gap: 15px; }
.play-summary img { width: 92px; aspect-ratio: 2/2.85; object-fit: cover; border-radius: 8px; }
.play-summary h2 { padding: 0; margin-bottom: 5px; border: 0; font-size: 1rem; }
.play-summary p { margin-bottom: 12px; color: var(--muted); font-size: .76rem; }
.play-summary a { color: var(--accent); font-size: .78rem; }

/* Articles */
.article-layout { display: grid; grid-template-columns: minmax(0,900px) 310px; padding-bottom: 35px; justify-content: center; gap: 36px; }
.article-detail { min-width: 0; }
.article-header { padding: 38px 0 25px; }
.article-header h1 { margin-bottom: 19px; font-size: clamp(2rem,4.3vw,4rem); line-height: 1.16; letter-spacing: -.04em; text-wrap: balance; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: .78rem; }
.article-lead { padding: 18px 20px; margin-top: 25px; margin-bottom: 0; color: #bec7d4; border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; background: rgba(255,255,255,.035); }
.article-cover { margin-bottom: 29px; overflow: hidden; border-radius: var(--radius); }
.article-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-content { font-size: 1.02rem; }
.article-content p { margin-bottom: 1.4em; }
.article-content h2, .article-content h3 { margin: 1.5em 0 .7em; color: var(--text); line-height: 1.3; }
.article-footer { padding: 17px 20px; margin-top: 32px; color: var(--muted); border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); font-size: .78rem; }
.article-footer p { margin: 0; }
.article-sidebar { padding-top: 95px; }

/* Topics */
.topic-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.topic-card { display: grid; grid-template-columns: 47% minmax(0,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: border-color .2s, transform .2s; }
.topic-card:hover { border-color: rgba(105,92,255,.44); transform: translateY(-3px); }
.topic-card__image { position: relative; min-height: 235px; overflow: hidden; }
.topic-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.topic-card:hover img { transform: scale(1.04); }
.topic-card__image span { position: absolute; right: 10px; bottom: 10px; padding: 4px 9px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(4,6,10,.72); font-size: .7rem; backdrop-filter: blur(8px); }
.topic-card > div { display: flex; min-width: 0; padding: 24px; flex-direction: column; justify-content: center; }
.topic-card h2 { margin-bottom: 9px; font-size: 1.35rem; line-height: 1.3; }
.topic-card h2 a:hover { color: var(--accent); }
.topic-card > div > p:last-child { display: -webkit-box; margin-bottom: 0; overflow: hidden; color: var(--muted); font-size: .84rem; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; }
.topic-hero { position: relative; min-height: 470px; display: grid; align-items: end; overflow: hidden; }
.topic-hero > img, .topic-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.topic-hero > img { object-fit: cover; }
.topic-hero__shade { background: linear-gradient(0deg,var(--bg) 0%,rgba(8,11,16,.34) 70%), linear-gradient(90deg,rgba(8,11,16,.9),transparent 70%); }
.topic-hero__content { position: relative; z-index: 1; padding-bottom: 54px; }
.topic-hero h1 { max-width: 850px; margin-bottom: 12px; font-size: clamp(2.6rem,5.5vw,5.7rem); line-height: 1; letter-spacing: -.05em; }
.topic-hero__content > p:not(.eyebrow) { max-width: 680px; color: #c3cbd7; }
.topic-hero__content > span { display: inline-block; padding: 5px 12px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(8,11,16,.38); font-size: .78rem; }
.topic-intro { margin-top: 15px; }

/* Pagination and empty */
.pagination { display: flex; padding: 38px 0 10px; flex-wrap: wrap; align-items: center; justify-content: center; gap: 7px; }
.pagination a { display: grid; min-width: 40px; height: 40px; padding: 0 11px; place-items: center; color: var(--muted); border: 1px solid var(--line); border-radius: 8px; background: var(--surface); font-size: .8rem; }
.pagination a:hover, .pagination a.is-active { color: var(--text); border-color: rgba(32,183,255,.4); background: rgba(32,183,255,.11); }
.pagination a.is-disabled { opacity: .4; pointer-events: none; }
.pagination__numbers { display: flex; gap: 7px; }
.pagination__summary { width: 100%; padding-top: 7px; color: var(--muted); font-size: .74rem; text-align: center; }
.empty-state { padding: 80px 20px; text-align: center; }
.empty-state img { margin: 0 auto 18px; opacity: .85; }
.empty-state h2 { margin-bottom: 6px; }
.empty-state p { margin-bottom: 20px; color: var(--muted); }

/* Footer */
.site-footer { margin-top: 30px; border-top: 1px solid var(--line); background: #07090d; }
.footer__grid { display: grid; grid-template-columns: minmax(260px, 1.15fr) minmax(290px, .9fr) auto; padding-block: 52px 32px; gap: 44px; align-items: start; }
.brand--footer img { width: auto; max-width: 150px; height: 38px; object-fit: contain; }
.footer__intro { max-width: 540px; margin: 16px 0 0; color: var(--muted); font-size: .82rem; }
.footer__business { min-width: 0; }
.footer__business-eyebrow { margin: 0 0 7px; color: var(--accent); font-size: .64rem; font-weight: 800; letter-spacing: .17em; }
.footer__business h2 { margin: 0; color: #f4f7fb; font-size: .98rem; line-height: 1.35; }
.footer__business-copy { max-width: 420px; margin: 11px 0 15px; color: var(--muted); font-size: .76rem; line-height: 1.75; }
.footer__contact-list { display: grid; gap: 8px; }
.footer__contact-link { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px; align-items: center; width: fit-content; max-width: 100%; color: #cbd4df; font-size: .75rem; }
.footer__contact-link span { color: #78879a; }
.footer__contact-link strong { overflow-wrap: anywhere; color: #dce5ef; font-weight: 650; }
.footer__contact-link:hover strong { color: var(--accent); }
.footer__contact-empty { margin: 0; color: #78879a; font-size: .75rem; }
.footer__links { display: flex; flex-wrap: wrap; align-content: flex-start; justify-content: flex-end; gap: 11px 24px; color: #bcc4d0; font-size: .82rem; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom { display: flex; min-height: 54px; padding-block: 13px; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); color: #687487; font-size: .7rem; }
.footer__bottom p { margin: 0; }
.back-top { position: fixed; z-index: 80; right: 20px; bottom: 20px; display: grid; width: 43px; height: 43px; place-items: center; visibility: hidden; opacity: 0; border: 1px solid var(--line-strong); border-radius: 50%; cursor: pointer; background: rgba(20,27,38,.88); box-shadow: 0 12px 28px rgba(0,0,0,.3); transition: opacity .2s, visibility .2s, transform .2s; backdrop-filter: blur(12px); }
.back-top.is-visible { visibility: visible; opacity: 1; }
.back-top:hover { color: var(--accent); transform: translateY(-3px); }

/* Responsive */
@media (max-width: 1240px) {
  .site-nav { gap: 17px; }
  .site-nav a { font-size: .86rem; }
  .header-search { width: 220px; }
  .media-grid { grid-template-columns: repeat(5,minmax(0,1fr)); }
  .media-grid--mini { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .content-with-aside .media-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .category-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
}

@media (max-width: 1024px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 34px), var(--container)); }
  .header__inner { gap: 16px; }
  .header__menu-button { display: block; order: 3; }
  .header-search { width: min(300px,34vw); }
  .site-nav { position: fixed; z-index: 110; top: var(--header-height); right: 0; bottom: 0; left: 0; display: flex; padding: 25px 18px 50px; flex-direction: column; align-items: stretch; gap: 0; visibility: hidden; opacity: 0; overflow-y: auto; background: rgba(8,11,16,.985); transform: translateY(-12px); transition: visibility .2s, opacity .2s, transform .2s; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav a::after { display: none; }
  .header__menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .header__menu-button[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .header__menu-button[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: 640px; }
  .hero__content { padding-bottom: 120px; }
  .media-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .media-grid--mini { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .rank-columns { grid-template-columns: 1fr; }
  .rank-panel ol { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: 25px; }
  .news-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .content-with-aside { grid-template-columns: 1fr; }
  .content-with-aside .media-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .sidebar { display: block; }
  .detail-hero { grid-template-columns: 230px minmax(0,1fr); }
  .detail-rating { position: static; align-items: flex-start; margin-top: 14px; }
  .detail-meta { margin-top: 17px; grid-template-columns: 1fr; }
  .detail-layout, .play-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: minmax(0,850px); }
  .article-sidebar { display: none; }
  .topic-card { grid-template-columns: 42% minmax(0,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand__image { max-width: 130px; height: 35px; }
  .header-search { width: auto; min-width: 0; flex: 1; }
  .header-search input { padding-left: 13px; font-size: .82rem; }
  .hero { min-height: 0; }
  .hero__track { position: relative; inset: auto; }
  .hero__slide { position: relative; inset: auto; display: none; }
  .hero__slide.is-active { display: block; }
  .hero__media { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 8 / 3; overflow: hidden; background: #070a0e; }
  .hero__media img { object-fit: contain; object-position: center top; transform: none; }
  .hero__slide.is-active .hero__media img { transform: none; }
  .hero__overlay { display: none; }
  .hero__content { padding-top: 24px; padding-bottom: 10px; }
  .hero__content h1 { margin-bottom: 10px; font-size: clamp(2.15rem,9vw,3.35rem); line-height: 1.04; }
  .hero__content .eyebrow { margin-bottom: 4px; }
  .hero__meta { margin-bottom: 10px; }
  .hero__description { font-size: .86rem; -webkit-line-clamp: 2; line-clamp: 2; }
  .hero__actions { gap: 9px; }
  .hero__controls { position: relative; right: auto; bottom: auto; left: auto; margin-top: 12px; }
  .hero-search-wrap { position: relative; right: auto; bottom: auto; left: auto; margin-top: 16px; padding-bottom: 22px; }
  .hero-search { padding: 7px; }
  .hero-search > label { display: none; }
  .hero-search input { padding-inline: 12px; border-left: 0; font-size: .82rem; }
  .hero-search .button { padding-inline: 16px; }
  .section { padding-block: 48px; }
  .section--first { padding-top: 38px; }
  .section__head { align-items: center; }
  .section__head h2 { font-size: 1.55rem; }
  .section__more { font-size: .78rem; }
  .home-catalog__head { margin-bottom: 14px; }
  .home-tabs { max-width: none; margin-bottom: 18px; padding: 4px; gap: 4px; border-radius: 12px; }
  .home-tab { min-height: 40px; padding: 6px 4px; border-radius: 9px; font-size: .84rem; white-space: nowrap; }
  .home-tab-panel__head { margin-bottom: 14px; }
  .home-tab-panel__head strong { font-size: .98rem; }
  .home-tab-panel__head a { font-size: .76rem; }
  .home-subcategories { margin-bottom: 14px; padding-bottom: 8px; gap: 7px; }
  .home-subcategories a,
  .home-subcategories button { min-height: 32px; padding: 6px 11px; font-size: .74rem; }
  .media-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 21px 12px; }
  .split-sections { grid-template-columns: 1fr; gap: 48px; }
  .media-grid--mini { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .media-card__cover { border-radius: 12px; }
  .media-card__play { width: 42px; height: 42px; }
  .media-card__body h3 { font-size: .88rem; }
  .media-card__body p { font-size: .7rem; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { display: grid; grid-template-columns: 38% minmax(0,1fr); }
  .news-card__image { height: 100%; aspect-ratio: auto; }
  .news-card__body { padding: 15px; }
  .news-card h3 { font-size: .96rem; }
  .news-card__body > p:last-child { display: none; }
  .rank-panel ol { display: block; }
  .category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .page-hero { padding: 44px 25px; }
  .page-hero h1 { font-size: 2.45rem; }
  .filter-panel { padding-inline: 14px; }
  .filter-row { grid-template-columns: 1fr; }
  .filter-row > strong { padding-bottom: 0; }
  .search-form-large { border-radius: 12px; }
  .search-form-large .button { padding-inline: 14px; }
  .content-with-aside .media-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .detail-hero { grid-template-columns: 160px minmax(0,1fr); padding: 19px; gap: 19px; }
  .detail-hero__content { padding-top: 3px; }
  .detail-hero__content h1 { font-size: 2.15rem; }
  .detail-hero__sub, .detail-blurb { display: none; }
  .detail-meta { margin-block: 12px; }
  .detail-meta > div:nth-child(n+4) { display: none; }
  .detail-actions .button { min-height: 40px; padding-inline: 14px; font-size: .8rem; }
  .detail-panel { padding: 20px 16px; }
  .episode-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .play-title { align-items: center; }
  .play-title .button { display: none; }
  .player-shell { margin-inline: -12px; border-inline: 0; border-radius: 0; }
  .player-toolbar { align-items: flex-start; flex-direction: column; }
  .rank-page-grid { grid-template-columns: 1fr; }
  .rank-panel--large { padding: 20px; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-hero { min-height: 420px; }
  .topic-card { grid-template-columns: 43% minmax(0,1fr); }
  .topic-card__image { min-height: 195px; }
  .topic-card > div { padding: 17px; }
  .topic-card h2 { font-size: 1.08rem; }
  .article-header { padding-top: 25px; }
  .article-header h1 { font-size: 2.25rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__links { grid-column: auto; justify-content: flex-start; }
  .footer__business-copy { margin-top: 9px; }
  .footer__contact-link { grid-template-columns: 1fr; gap: 2px; font-size: .82rem; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; }
}

@media (max-width: 520px) {
  .header-search input::placeholder { color: transparent; }
  .header-search { max-width: 76px; margin-left: auto; }
  .header-search:focus-within { max-width: none; }
  .hero { min-height: 0; }
  .hero__media { height: auto; }
  .hero__content { padding-top: 20px; padding-bottom: 8px; }
  .hero__content h1 { font-size: clamp(2rem,9.5vw,2.75rem); }
  .hero__meta span:nth-last-child(-n+2) { display: none; }
  .hero__actions .button { min-height: 40px; padding-inline: 14px; font-size: .83rem; }
  .hero__controls { bottom: auto; }
  .hero__dots { flex: 1; justify-content: center; gap: 5px; }
  .hero__dots button { width: 14px; }
  .hero__dots button.is-active { width: 28px; }
  .hero-search-wrap { bottom: auto; }
  .media-grid, .media-grid--mini, .content-with-aside .media-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .news-card { grid-template-columns: 42% minmax(0,1fr); }
  .news-card__meta time { display: none; }
  .category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .page-hero { padding: 36px 20px; }
  .page-hero h1 { font-size: 2rem; }
  .search-header h1 { font-size: 2rem; }
  .search-form-large input { padding-inline: 10px; }
  .detail-hero { display: block; padding: 17px; }
  .detail-hero__poster { width: 132px; float: left; margin: 0 16px 12px 0; }
  .detail-hero__content { min-height: 190px; }
  .detail-hero__content h1 { font-size: 1.8rem; }
  .detail-rating strong { font-size: 1.5rem; }
  .detail-meta { display: block; margin-top: 8px; }
  .detail-meta > div { display: block; }
  .detail-meta > div:nth-child(n+2) { display: none; }
  .detail-meta dt { display: none; }
  .detail-actions { clear: both; padding-top: 8px; }
  .episode-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .topic-card { display: block; }
  .topic-card__image { min-height: auto; aspect-ratio: 16/9; }
  .pagination__edge:first-child, .pagination__edge:nth-last-of-type(1) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
