:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(148, 163, 184, 0.22);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --amber: #f59e0b;
  --red: #f43f5e;
  --green: #22c55e;
  --shadow: 0 24px 80px rgba(8, 13, 30, 0.44);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.14), transparent 28rem),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 30rem),
    linear-gradient(180deg, #0f172a 0%, #020617 55%, #0f172a 100%);
}

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

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

img.image-hidden {
  display: none !important;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 14px 35px rgba(34, 211, 238, 0.22);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-2deg);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--soft);
  font-weight: 600;
}

.nav-links a,
.mobile-nav a {
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-links a:hover,
.mobile-nav a:hover {
  color: var(--cyan);
}

.menu-toggle {
  display: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.7);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  color: var(--soft);
  border-radius: 12px;
}

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

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
}

.hero-img {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(37, 99, 235, 0.28));
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.02);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.hero-img:hover img {
  opacity: 0.95;
  transform: scale(1.08);
}

.hero-img span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.65);
}

.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.78));
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.8)),
    radial-gradient(circle at 22% 40%, rgba(34, 211, 238, 0.18), transparent 28rem);
}

.hero-content {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
  padding: 76px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(8, 47, 73, 0.36);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 24px 0 12px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-subtitle {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: clamp(24px, 3.3vw, 40px);
  font-weight: 800;
}

.hero-text {
  max-width: 700px;
  margin: 0 0 30px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.8;
}

.hero-actions,
.search-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 42px rgba(34, 211, 238, 0.22);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(30, 41, 59, 0.78);
}

.btn-ghost {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(8, 47, 73, 0.24);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  color: var(--muted);
}

.hero-stats span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid var(--line);
}

.hero-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.hero-pick {
  display: grid;
  gap: 7px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.hero-pick + .hero-pick {
  margin-top: 14px;
}

.hero-pick:hover {
  transform: translateX(5px);
  border-color: rgba(34, 211, 238, 0.46);
  background: rgba(8, 47, 73, 0.52);
}

.hero-pick span {
  width: max-content;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.hero-pick strong {
  font-size: 18px;
}

.hero-pick em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.page-stack,
.page-shell,
.detail-shell {
  padding: 64px 0;
}

.page-stack {
  display: grid;
  gap: 64px;
}

.content-section {
  position: relative;
}

.glass-section,
.ranking-box,
.search-panel,
.detail-player-card,
.detail-main,
.detail-side,
.page-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.glass-section {
  padding: 30px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

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

.section-bar {
  width: 6px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
}

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

.section-action,
.text-link {
  color: var(--cyan);
  font-weight: 800;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.68);
  box-shadow: 0 14px 38px rgba(2, 6, 23, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 24px 58px rgba(34, 211, 238, 0.12);
}

.thumb,
.category-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(34, 211, 238, 0.24), transparent 18rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(37, 99, 235, 0.25));
}

.thumb {
  aspect-ratio: 16 / 10;
}

.movie-card-featured .thumb {
  aspect-ratio: 16 / 9;
}

.thumb img,
.category-cover img,
.detail-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.movie-card:hover .thumb img,
.category-overview-card:hover .category-cover img {
  transform: scale(1.08);
}

.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(2, 6, 23, 0.72));
}

.type-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.type-badge {
  right: 14px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
}

.rank-badge {
  left: 14px;
  color: #111827;
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
}

.play-hover {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--cyan);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
  padding: 18px;
}

.movie-card-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card-body h3 a:hover {
  color: var(--cyan);
}

.movie-card-body p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 13px;
}

.movie-meta a {
  color: var(--cyan);
  font-weight: 800;
}

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

.tag-row span,
.tag-cloud span,
.detail-meta-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(51, 65, 85, 0.52);
  font-size: 12px;
}

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

.category-card {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.76);
}

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

.category-card:hover img {
  opacity: 0.42;
  transform: scale(1.06);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.8), rgba(8, 47, 73, 0.48));
}

.category-card span,
.category-card strong {
  position: relative;
  z-index: 2;
  display: block;
}

.category-card span {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
}

.category-card strong {
  max-width: 260px;
  color: var(--soft);
  line-height: 1.7;
}

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

.ranking-box {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.ranking-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ranking-heading span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--amber));
  font-weight: 900;
}

.ranking-heading h2 {
  margin: 0;
}

.rank-lines,
.rank-list-grid {
  display: grid;
  gap: 10px;
}

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

.rank-line {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
  padding: 13px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.16);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.rank-line:hover {
  transform: translateX(4px);
  border-color: rgba(34, 211, 238, 0.45);
}

.rank-line span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(8, 47, 73, 0.52);
  font-weight: 900;
}

.rank-line strong,
.rank-line em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-line em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  margin-bottom: 34px;
  padding: clamp(28px, 5vw, 48px);
  background:
    radial-gradient(circle at right top, rgba(34, 211, 238, 0.15), transparent 22rem),
    rgba(15, 23, 42, 0.76);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.8;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.68);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.45);
}

.category-cover {
  min-height: 150px;
  border-radius: 18px;
}

.category-overview-card h2 {
  margin: 0 0 9px;
}

.category-overview-card h2 a:hover {
  color: var(--cyan);
}

.category-overview-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.category-samples span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--soft);
  background: rgba(51, 65, 85, 0.5);
  font-size: 12px;
}

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

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 13px;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--line);
}

.pagination a:hover,
.pagination a.is-current {
  color: #fff;
  border-color: rgba(34, 211, 238, 0.5);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.search-panel {
  padding: 24px;
  margin-bottom: 32px;
}

.search-row {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.search-row label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-weight: 700;
}

.search-row input,
.search-row select {
  width: 100%;
  min-height: 46px;
  color: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.88);
  padding: 0 14px;
  outline: none;
}

.search-row input:focus,
.search-row select:focus {
  border-color: rgba(34, 211, 238, 0.62);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.search-summary {
  margin-bottom: 20px;
  color: var(--soft);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--muted);
}

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

.detail-player-card {
  overflow: hidden;
  margin-bottom: 28px;
}

.player {
  position: relative;
  min-height: 280px;
  background: #000;
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.24), rgba(2, 6, 23, 0.72));
}

.player-start.is-hidden {
  display: none;
}

.play-circle {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 50px rgba(34, 211, 238, 0.26);
  font-size: 28px;
}

.player-message {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 5;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  background: rgba(15, 23, 42, 0.82);
}

.detail-title-area {
  padding: 28px;
}

.detail-title-area h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.detail-title-area p {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 18px;
  line-height: 1.7;
}

.detail-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  margin-bottom: 48px;
}

.detail-main,
.detail-side {
  padding: 26px;
}

.detail-main h2,
.detail-side h2 {
  margin: 0 0 14px;
}

.detail-main h2:not(:first-child) {
  margin-top: 30px;
}

.detail-main p {
  margin: 0;
  color: var(--soft);
  line-height: 1.95;
  font-size: 17px;
}

.detail-side img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(37, 99, 235, 0.25));
}

.detail-side-info {
  margin: 22px 0;
}

.detail-side-info p {
  margin: 10px 0;
  color: var(--soft);
  line-height: 1.5;
}

.detail-side-info strong {
  color: #fff;
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: 44px 0;
}

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

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

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding: 18px 0;
  text-align: center;
  color: var(--muted);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1060px) {
  .featured-grid,
  .compact-grid,
  .listing-grid,
  .library-grid,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .ranking-box {
    position: static;
  }

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

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

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

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .hero-img,
  .hero-content {
    min-height: auto;
  }

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

  .hero-img:nth-child(n + 2) {
    display: none;
  }

  .hero-content {
    display: block;
    padding: 58px 0;
  }

  .hero-panel {
    margin-top: 28px;
  }

  .featured-grid,
  .compact-grid,
  .listing-grid,
  .library-grid,
  .related-grid,
  .category-grid,
  .rank-list-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .detail-player-card,
  .detail-main,
  .detail-side,
  .page-hero,
  .glass-section,
  .search-panel {
    border-radius: 18px;
  }
}
