* {
  box-sizing: border-box;
}

:root {
  --orange: #f97316;
  --amber: #f59e0b;
  --red: #ef4444;
  --yellow: #facc15;
  --dark: #111827;
  --gray: #4b5563;
  --light: #fff7ed;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
  --soft-shadow: 0 10px 25px rgba(17, 24, 39, 0.1);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #fff7ed 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #f59e0b, #fb923c, #f59e0b);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.3);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand {
  color: #ffffff;
  font-size: 1.35rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--orange);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.28);
  transform: translateZ(0);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: #ffffff;
  font-weight: 700;
  opacity: 0.96;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: #ffffff;
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.mobile-nav {
  display: none;
  padding: 12px 24px 18px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.12);
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: #1f2937;
  font-weight: 700;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 72px 0 84px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.24) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
    linear-gradient(135deg, #f59e0b 0%, #fb923c 48%, #ef4444 100%);
}

.hero-section::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  content: "";
  background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, 0));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: 44px;
  align-items: center;
}

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

.hero-pill,
.section-heading span,
.page-hero span,
.ranking-title span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-pill {
  margin-bottom: 18px;
  padding: 8px 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.9rem, 7vw, 5.9rem);
  line-height: 1.02;
  font-weight: 900;
  text-shadow: 0 16px 36px rgba(127, 29, 29, 0.25);
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.hero-search,
.filter-panel {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: var(--soft-shadow);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--dark);
  background: #ffffff;
}

.hero-search button,
.filter-panel button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-search button {
  color: var(--orange);
  background: #ffffff;
}

.primary-link:hover,
.filter-panel button:hover,
.hero-search button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.34);
}

.primary-link.dark {
  background: linear-gradient(90deg, #f97316, #f59e0b);
}

.primary-link.full {
  width: 100%;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 11px 23px;
  color: #ffffff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.ghost-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

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

.hero-showcase {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(127, 29, 29, 0.28);
  backdrop-filter: blur(16px);
}

.hero-slides {
  position: relative;
  min-height: 530px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 28px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.65s ease;
}

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

.hero-slide-tag {
  width: max-content;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(249, 115, 22, 0.86);
}

.hero-slide strong {
  font-size: clamp(1.6rem, 4vw, 2.55rem);
  line-height: 1.1;
}

.hero-slide span:last-child {
  color: rgba(255, 255, 255, 0.9);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 2px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 28px;
  background: #ffffff;
}

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

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.section-warm {
  background: linear-gradient(90deg, #ffedd5, #fef3c7, #fef9c3);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading span,
.page-hero span,
.ranking-title span {
  margin-bottom: 10px;
  padding: 6px 12px;
  color: var(--orange);
  background: #ffedd5;
}

.section-heading h2,
.page-hero h1,
.prose-card h2 {
  margin: 0 0 12px;
  color: #1f2937;
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 900;
}

.section-heading p,
.page-hero p {
  margin: 0;
  color: #6b7280;
  font-size: 1.05rem;
}

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

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

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

.movie-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.cover-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #ffedd5, #fed7aa);
}

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

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

.cover-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0);
  transition: background 0.28s ease;
}

.movie-card:hover .cover-wrap::after {
  background: rgba(0, 0, 0, 0.35);
}

.play-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: var(--orange);
  background: #ffffff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

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

.card-badge,
.rank-badge {
  position: absolute;
  z-index: 3;
  top: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f97316, #f59e0b);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
}

.card-badge {
  right: 10px;
}

.rank-badge {
  left: 10px;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 5px;
  padding: 13px;
}

.card-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: #1f2937;
  font-size: 0.98rem;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body small {
  color: #6b7280;
}

.card-body span:last-child {
  display: -webkit-box;
  overflow: hidden;
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

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

.category-tile,
.category-card a {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius);
  color: #ffffff;
  box-shadow: var(--soft-shadow);
  transform: translateZ(0);
}

.category-tile img,
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-tile::after,
.category-card a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.15), rgba(17, 24, 39, 0.86));
}

.category-tile:hover img,
.category-card:hover img {
  transform: scale(1.08);
}

.category-tile span,
.category-card-body {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 20px;
}

.category-tile strong,
.category-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.28rem;
  font-weight: 900;
}

.category-tile small,
.category-card small {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.category-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

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

.ranking-panel {
  position: sticky;
  top: 96px;
  border-radius: var(--radius);
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.ranking-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ranking-title a {
  color: var(--orange);
  font-weight: 800;
}

.rank-card {
  display: grid;
  grid-template-columns: 42px 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ffedd5;
}

.rank-card:last-child {
  border-bottom: 0;
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  font-weight: 900;
}

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

.rank-card strong {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 3px;
  color: #1f2937;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-card small {
  display: block;
  color: #6b7280;
  font-size: 0.82rem;
}

.cta-section {
  padding: 70px 0 82px;
  background: #ffffff;
}

.cta-card {
  border-radius: 34px;
  padding: clamp(34px, 6vw, 64px);
  color: #ffffff;
  text-align: center;
  background: linear-gradient(90deg, #f97316, #f59e0b);
  box-shadow: 0 24px 70px rgba(249, 115, 22, 0.28);
}

.cta-card h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

.cta-card p {
  margin: 0 auto 24px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-card .primary-link {
  color: var(--orange);
  background: #ffffff;
}

.page-hero {
  padding: 64px 0;
  color: #ffffff;
  background: linear-gradient(90deg, #fb923c, #f59e0b);
}

.page-hero h1 {
  color: #ffffff;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.filter-panel {
  margin-bottom: 28px;
  border-radius: 22px;
  background: #ffffff;
}

.search-box {
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  gap: 10px;
  padding: 0 14px;
  border-radius: 16px;
  background: #fff7ed;
}

.search-box span {
  color: var(--orange);
  font-size: 1.3rem;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 14px 0;
  background: transparent;
}

.filter-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-actions select {
  border: 0;
  outline: none;
  border-radius: 16px;
  padding: 14px 16px;
  color: #374151;
  background: #fff7ed;
}

.empty-state {
  border-radius: var(--radius);
  padding: 26px;
  color: #9a3412;
  text-align: center;
  background: #ffedd5;
  font-weight: 800;
}

.detail-section {
  padding: 34px 0 76px;
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 26px;
  color: #6b7280;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--orange);
}

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

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card,
.content-card,
.side-card,
.prose-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.player-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

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

.player-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  color: var(--orange);
  background: #ffffff;
  font-size: 2rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.player-overlay span:last-child {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.content-card,
.prose-card {
  padding: clamp(24px, 4vw, 38px);
}

.content-card h2,
.prose-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #1f2937;
  font-size: 1.55rem;
}

.content-card h2:not(:first-child),
.prose-card h2:not(:first-child) {
  margin-top: 28px;
}

.content-card p,
.prose-card p {
  margin: 0;
  color: #4b5563;
  white-space: pre-line;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  border-radius: 999px;
  padding: 7px 12px;
  color: #c2410c;
  background: linear-gradient(90deg, #ffedd5, #fef3c7);
  font-weight: 700;
}

.detail-side {
  position: relative;
}

.side-card {
  position: sticky;
  top: 98px;
  padding: 22px;
}

.poster-large {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.side-card h1 {
  margin: 18px 0 10px;
  color: #1f2937;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.side-card p {
  margin: 0 0 18px;
  color: #6b7280;
  font-style: italic;
}

.side-card dl {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px 12px;
  margin: 0 0 20px;
}

.side-card dt {
  color: #9a3412;
  font-weight: 900;
}

.side-card dd {
  margin: 0;
  color: #374151;
}

.related-section {
  padding-top: 54px;
}

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

.site-footer {
  color: #ffffff;
  background: linear-gradient(180deg, #1f2937, #111827);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 48px 0 36px;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #fdba74;
  font-size: 1.08rem;
}

.footer-grid p {
  margin: 0;
  color: #d1d5db;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #d1d5db;
  transition: color 0.2s ease;
}

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

.footer-brand {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.footer-brand .brand-icon {
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  color: #9ca3af;
  text-align: center;
  font-size: 0.92rem;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .movie-grid,
  .movie-grid.all-grid,
  .related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .ranking-panel,
  .side-card {
    position: static;
  }

  .hero-showcase {
    max-width: 680px;
    width: 100%;
  }
}

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero-section {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-search,
  .filter-panel {
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
  }

  .hero-search button,
  .filter-panel button,
  .primary-link,
  .ghost-link {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-slides {
    min-height: 420px;
  }

  .filter-actions {
    width: 100%;
    flex-direction: column;
  }

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

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

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

  .nav-shell {
    min-height: 66px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

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

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

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

  .hero-slide {
    padding: 22px;
  }

  .hero-slides {
    min-height: 360px;
  }

  .page-hero {
    padding: 46px 0;
  }

  .player-icon {
    width: 68px;
    height: 68px;
  }
}
