:root {
  --text: #111827;
  --muted: #6b7280;
  --soft: #f8fafc;
  --line: #e5e7eb;
  --pink: #ec4899;
  --orange: #f97316;
  --dark: #111827;
  --dark-2: #1f2937;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-inner {
  max-width: 1280px;
  height: 78px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.28);
  transition: transform 0.25s ease;
}

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

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong,
.footer-brand {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #374151;
  font-size: 15px;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #f3f4f6;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #374151;
}

.mobile-nav {
  display: none;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: #374151;
}

.hero-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.hero-track,
.hero-slide,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.45), transparent 32%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0.72) 42%, rgba(17, 24, 39, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.78), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 112px 24px 120px;
  margin-left: max(24px, calc((100vw - 1280px) / 2));
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #fb923c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 950;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.hero-content p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
}

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

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

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #be185d;
  background: #fdf2f8;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn.primary,
.btn.slim {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 16px 34px rgba(236, 72, 153, 0.28);
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.btn.ghost.dark {
  color: #111827;
  background: #ffffff;
  border-color: var(--line);
}

.btn.ghost.light {
  color: #ffffff;
}

.btn.slim {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: max(24px, calc((100vw - 1280px) / 2));
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 11px !important;
  height: 11px !important;
  border-radius: 999px !important;
  padding: 0;
}

.hero-dot.active {
  width: 34px !important;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.hero-side-panel {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1280px) / 2));
  bottom: 42px;
  width: min(360px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(17, 24, 39, 0.48);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.hero-side-panel > span,
.rank-head span {
  display: block;
  margin-bottom: 12px;
  color: #fdba74;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  padding: 9px;
  border-radius: 18px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.mini-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.mini-card img {
  width: 58px;
  height: 78px;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdf2f8, #ffedd5);
}

.mini-card strong,
.mini-card small {
  display: block;
}

.mini-card strong {
  overflow: hidden;
  color: inherit;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.hero-side-panel .mini-card small,
.hero-side-panel .mini-card strong {
  color: #ffffff;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.quick-search {
  padding-top: 52px;
}

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

.section-heading h2,
.rank-head h2,
.detail-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #db2777, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-link,
.rank-more {
  color: #db2777;
  font-weight: 900;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
  margin-bottom: 28px;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.search-wrap span {
  color: #db2777;
  font-size: 22px;
  font-weight: 900;
}

.search-wrap input,
.filter-panel select {
  width: 100%;
  border: 0;
  outline: none;
  color: #111827;
  background: transparent;
}

.filter-panel select {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

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

.movie-card {
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.2);
}

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

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

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

.poster-badge,
.score-badge {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(17, 24, 39, 0.65);
  backdrop-filter: blur(10px);
}

.poster-badge {
  left: 12px;
}

.score-badge {
  right: 12px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.88), rgba(249, 115, 22, 0.88));
}

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

.movie-card-title {
  display: block;
  overflow: hidden;
  color: #111827;
  font-size: 18px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.movie-card-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 12px 0;
  overflow: hidden;
  color: #4b5563;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 34px;
  align-items: start;
}

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

.category-tile,
.category-card-large {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(236, 72, 153, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.22), transparent 32%),
    linear-gradient(135deg, #ffffff, #fff7ed);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.category-tile span,
.category-card-title {
  display: block;
  margin-bottom: 10px;
  color: #db2777;
  font-size: 22px;
  font-weight: 950;
}

.category-tile strong,
.category-card-large p {
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
}

.rank-panel {
  position: sticky;
  top: 108px;
  padding: 24px;
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 0%, rgba(236, 72, 153, 0.34), transparent 35%),
    linear-gradient(135deg, #111827, #1f2937);
  box-shadow: 0 25px 70px rgba(17, 24, 39, 0.28);
}

.rank-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.rank-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.rank-no {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-weight: 950;
}

.rank-title,
.rank-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-title {
  font-weight: 900;
}

.rank-row small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.rank-more {
  color: #fdba74;
}

.page-hero {
  max-width: 1280px;
  margin: 34px auto 0;
  padding: 54px 24px;
  color: #ffffff;
  border-radius: 0 0 38px 38px;
  background:
    radial-gradient(circle at 84% 20%, rgba(236, 72, 153, 0.4), transparent 28%),
    linear-gradient(135deg, #111827, #1f2937);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.category-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.category-card-large {
  min-height: auto;
}

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

.mini-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.category-card-large .mini-card {
  background: rgba(255, 255, 255, 0.68);
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 72px 70px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 94px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.ranking-number {
  color: #db2777;
  font-size: 18px;
  font-weight: 950;
}

.ranking-item img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, #fdf2f8, #ffedd5);
}

.ranking-copy strong,
.ranking-copy small {
  display: block;
}

.ranking-copy strong {
  font-size: 18px;
  font-weight: 950;
}

.ranking-copy small {
  color: var(--muted);
}

.ranking-item em {
  color: #ea580c;
  font-style: normal;
  font-weight: 950;
}

.breadcrumb {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #db2777;
  font-weight: 800;
}

.detail-hero {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: minmax(240px, 350px) 1fr;
  gap: 34px;
  align-items: stretch;
}

.detail-poster {
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, #fdf2f8, #ffedd5);
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.detail-info {
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 12%, rgba(249, 115, 22, 0.22), transparent 26%),
    #ffffff;
  box-shadow: var(--shadow);
}

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

.detail-lead {
  margin: 20px 0 0;
  color: #4b5563;
  font-size: 20px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.detail-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff7ed;
}

.detail-meta dt {
  color: var(--muted);
  font-size: 12px;
}

.detail-meta dd {
  margin: 4px 0 0;
  color: #111827;
  font-weight: 900;
}

.tag-list.large span {
  min-height: 34px;
  padding: 6px 13px;
}

.player-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 24px 0;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #020617;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.32);
  aspect-ratio: 16 / 9;
}

.player-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020617;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(236, 72, 153, 0.24), transparent 24%),
    rgba(2, 6, 23, 0.28);
}

.player-start span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  padding-left: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.42);
  font-size: 36px;
}

.player-start strong {
  font-size: 20px;
}

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

.detail-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.detail-copy article {
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-copy p {
  margin: 16px 0 0;
  color: #374151;
  font-size: 17px;
}

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

.movie-card.compact .movie-card-body p {
  display: none;
}

.no-result {
  display: none;
  padding: 26px;
  border-radius: 22px;
  color: #6b7280;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.no-result.show {
  display: block;
}

.site-footer {
  margin-top: 84px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
}

.footer-inner p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

  .rank-panel {
    position: relative;
    top: auto;
  }

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

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

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

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

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

  .hero-content {
    padding-top: 86px;
  }

  .hero-side-panel {
    left: 24px;
    right: 24px;
    width: auto;
  }

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

  .filter-panel,
  .detail-hero,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-poster img {
    min-height: auto;
  }

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

  .ranking-item {
    grid-template-columns: 54px 60px 1fr;
  }

  .ranking-item em {
    grid-column: 3;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .header-inner {
    height: 68px;
    padding: 0 16px;
  }

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

  .brand-copy strong {
    font-size: 18px;
  }

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-controls {
    left: 18px;
    bottom: 300px;
  }

  .movie-grid,
  .category-grid,
  .category-large-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .content-section,
  .player-section,
  .detail-hero,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .detail-info {
    padding: 24px;
  }

  .detail-meta {
    grid-template-columns: 1fr;
  }

  .player-card {
    border-radius: 22px;
  }
}
