:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-solid: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --amber: #f59e0b;
  --amber-soft: rgba(245, 158, 11, 0.18);
  --cyan: #22d3ee;
  --blue: #60a5fa;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 0 34px rgba(245, 158, 11, 0.48);
  animation: pulseGlow 2.4s infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-text strong {
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #fde68a, #fff7ed, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #cbd5e1;
  font-weight: 600;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.desktop-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--amber);
  transition: width 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: #fbbf24;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after,
.mobile-nav a:hover::after,
.mobile-nav a.active::after {
  width: 100%;
}

.menu-button {
  display: none;
  border: 0;
  color: #e2e8f0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0 16px 18px;
  flex-direction: column;
  gap: 16px;
  color: #e2e8f0;
}

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

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.78) 42%, rgba(2, 6, 23, 0.36) 100%),
    linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.45) 48%, rgba(2, 6, 23, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 84px 0 128px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #fbbf24;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  color: #f59e0b;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  max-width: 760px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.85;
}

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

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

.hero-meta span,
.hero-meta a,
.detail-meta span {
  padding: 8px 14px;
  color: #e2e8f0;
  border: 1px solid rgba(245, 158, 11, 0.26);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  cursor: pointer;
}

.primary-button {
  border: 0;
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.34);
}

.ghost-button {
  color: #f8fafc;
  border: 1px solid rgba(248, 250, 252, 0.2);
  background: rgba(15, 23, 42, 0.42);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(245, 158, 11, 0.28);
}

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

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.28);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #f59e0b;
}

.hero-thumbs {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: -76px;
  padding-bottom: 28px;
}

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.hero-thumb:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.55);
}

.hero-thumb img {
  width: 54px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 12px;
}

.hero-thumb span {
  overflow: hidden;
  color: #e2e8f0;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: end;
  gap: 18px;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  color: #fbbf24;
  background: rgba(2, 6, 23, 0.6);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #f8fafc;
  background: transparent;
}

.search-box input::placeholder {
  color: #64748b;
}

.filter-row {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-row label {
  display: grid;
  gap: 7px;
  color: #94a3b8;
  font-size: 0.82rem;
}

.filter-row select {
  min-width: 126px;
  height: 52px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  color: #e2e8f0;
  outline: 0;
  background: #0f172a;
}

.section-block {
  padding: 58px 0;
}

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

.section-title span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #111827;
  border-radius: 50%;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 0 26px rgba(245, 158, 11, 0.32);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.section-title i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.55), transparent);
}

.section-title.compact h2 {
  font-size: 1.55rem;
}

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

.featured-grid,
.related-grid,
.mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.video-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.92));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.46);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32), 0 0 30px rgba(245, 158, 11, 0.12);
}

.video-card.is-hidden,
.ranking-card.is-hidden {
  display: none;
}

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

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

.video-card:hover .poster-link img {
  transform: scale(1.05);
}

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

.year-badge,
.play-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.year-badge {
  top: 12px;
  left: 12px;
  padding: 7px 11px;
  color: #111827;
  background: rgba(251, 191, 36, 0.94);
}

.play-chip {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(245, 158, 11, 0.92);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.36);
}

.video-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.video-card h3 {
  min-height: 2.8em;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.4;
}

.video-card h3 a:hover,
.ranking-info h2 a:hover {
  color: #fbbf24;
}

.video-card p {
  min-height: 3.2em;
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.65;
}

.card-meta {
  gap: 8px;
  color: #94a3b8;
  font-size: 0.82rem;
}

.card-meta a {
  color: #fbbf24;
}

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

.tag-row span,
.detail-tags a {
  padding: 5px 9px;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.12);
  font-size: 0.76rem;
}

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

.category-grid.wide {
  margin-bottom: 38px;
}

.category-card {
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.22), transparent 60%),
    rgba(15, 23, 42, 0.78);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.54);
}

.category-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 900;
}

.category-card p,
.category-overview p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.7;
}

.ranking-strip {
  padding: 56px 0;
  background: rgba(15, 23, 42, 0.48);
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 48px 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.38);
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.rank-row:hover {
  transform: translateX(5px);
  border-color: rgba(245, 158, 11, 0.42);
}

.rank-row strong {
  color: #fbbf24;
  font-size: 1.1rem;
}

.rank-row img {
  width: 58px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
}

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

.rank-row em {
  color: #94a3b8;
  font-style: normal;
  white-space: nowrap;
}

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

.compact-card {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  border-radius: 20px;
  background: #0f172a;
}

.compact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

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

.compact-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.78);
}

.page-hero {
  padding: 92px 0 56px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.17), transparent 32rem),
    radial-gradient(circle at 82% 0%, rgba(34, 211, 238, 0.14), transparent 28rem),
    rgba(2, 6, 23, 0.58);
}

.category-page-hero {
  padding-bottom: 72px;
}

.category-overview {
  padding: 34px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

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

.category-overview h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.category-overview-head > a {
  color: #fbbf24;
  font-weight: 800;
}

.ranking-page-list {
  display: grid;
  gap: 18px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.ranking-cover {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0f172a;
}

.ranking-cover img {
  width: 100%;
  height: 202px;
  object-fit: cover;
}

.ranking-cover span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #111827;
  background: #fbbf24;
  font-weight: 900;
}

.ranking-info h2 {
  margin: 8px 0 10px;
  font-size: 1.4rem;
}

.ranking-info p {
  color: #cbd5e1;
  line-height: 1.85;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 54px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  filter: blur(18px);
  transform: scale(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.68) 42%, rgba(2, 6, 23, 0.92) 100%);
}

.detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: center;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow), 0 0 0 10px rgba(15, 23, 42, 0.28);
}

.player-shell video,
.player-cover,
.player-cover img {
  width: 100%;
  height: 100%;
}

.player-shell video {
  display: block;
  object-fit: contain;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000;
}

.player-cover img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.62;
}

.player-shell.is-playing .player-cover {
  display: none;
}

.big-play {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 18px 46px rgba(245, 158, 11, 0.42);
  font-size: 2rem;
}

.detail-copy {
  display: grid;
  gap: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #fbbf24;
}

.breadcrumb em {
  font-style: normal;
}

.detail-copy h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.detail-meta {
  margin-top: 4px;
}

.detail-tags a {
  color: #bfdbfe;
}

.detail-actions {
  margin-top: 4px;
}

.detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 46px 0 18px;
}

.story-card {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.story-card h2 {
  margin: 0 0 14px;
  color: #fbbf24;
}

.story-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.95;
}

.prev-next {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.prev-next a {
  padding: 12px 16px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 999px;
  color: #fbbf24;
  background: rgba(15, 23, 42, 0.56);
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 32px;
  padding: 42px 0;
}

.footer-brand {
  margin-bottom: 12px;
  color: #fbbf24;
  font-size: 1.25rem;
}

.site-footer p,
.site-footer h2 {
  margin: 0;
}

.site-footer p {
  color: #94a3b8;
  line-height: 1.8;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: #cbd5e1;
}

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

.footer-bottom {
  padding: 18px 16px;
  color: #64748b;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.38);
  }
  50% {
    box-shadow: 0 0 38px rgba(245, 158, 11, 0.66);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
    font-size: 0.94rem;
  }

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

  .hero-thumbs,
  .featured-grid,
  .related-grid,
  .mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .menu-button {
    display: block;
  }

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

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

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .video-grid,
  .featured-grid,
  .related-grid,
  .mini-grid,
  .library-grid,
  .category-grid,
  .compact-grid,
  .detail-content,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ranking-cover img {
    height: 154px;
  }

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

  .rank-row em {
    display: none;
  }
}

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

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-slider,
  .hero-content {
    min-height: 76vh;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    letter-spacing: -0.03em;
  }

  .hero-copy p,
  .page-hero p,
  .detail-one-line {
    font-size: 0.98rem;
  }

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

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

  .hero-thumbs,
  .video-grid,
  .featured-grid,
  .related-grid,
  .mini-grid,
  .library-grid,
  .category-grid,
  .compact-grid,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filter-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-row select {
    width: 100%;
  }

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

  .ranking-card {
    grid-template-columns: 1fr;
  }

  .ranking-cover img {
    height: 320px;
  }

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

  .story-card {
    padding: 20px;
  }
}
