:root {
  --bg-main: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.58);
  --bg-card-strong: rgba(30, 41, 59, 0.86);
  --line: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --emerald: #10b981;
  --emerald-2: #34d399;
  --cyan: #22d3ee;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 24px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), transparent 30rem),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 26rem),
    linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.site-logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 15px;
  transition: 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(16, 185, 129, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.72) 45%, rgba(2, 6, 23, 0.16) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.78) 0%, rgba(2, 6, 23, 0.36) 45%, rgba(2, 6, 23, 0.1) 100%);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 64px 0 96px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(16, 185, 129, 0.88);
  box-shadow: 0 14px 40px rgba(16, 185, 129, 0.25);
}

.hero h1,
.sub-hero h1,
.detail-hero h1 {
  margin: 0;
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero p,
.sub-hero p,
.detail-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-primary,
.btn-ghost,
.section-more,
.global-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  transition: 180ms ease;
}

.btn-primary,
.global-search button {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald), #059669);
  box-shadow: 0 14px 36px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover,
.global-search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(16, 185, 129, 0.34);
}

.btn-ghost {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  border-color: rgba(52, 211, 153, 0.6);
  color: var(--emerald-2);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  font-size: 32px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 180ms ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: 220ms ease;
}

.hero-dots button.active {
  width: 34px;
  background: var(--emerald);
}

.home-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: -34px;
  position: relative;
  z-index: 8;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.global-search {
  display: flex;
  width: min(100%, 680px);
  gap: 10px;
}

.global-search input,
.filter-panel input,
.filter-panel select {
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.72);
  outline: none;
}

.global-search input {
  flex: 1;
  padding: 0 18px;
}

.global-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(52, 211, 153, 0.7);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.12);
}

.quick-links a:hover {
  color: #ffffff;
  background: rgba(16, 185, 129, 0.22);
}

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

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

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
}

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

.section-more {
  color: var(--emerald-2);
  white-space: nowrap;
}

.section-more:hover {
  color: #a7f3d0;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 0 16px;
}

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

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

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card.hidden {
  display: none;
}

.movie-card-link,
.movie-card > a {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-card);
  transition: 220ms ease;
}

.movie-card-link:hover,
.movie-card > a:hover {
  border-color: rgba(52, 211, 153, 0.38);
  background: var(--bg-card-strong);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.movie-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #020617;
}

.movie-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.movie-card-link:hover .movie-thumb img,
.movie-card > a:hover img {
  transform: scale(1.08);
}

.movie-region {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.76);
}

.movie-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 42px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.42);
  transition: 220ms ease;
}

.movie-card-link:hover .movie-play,
.movie-card > a:hover .movie-play {
  opacity: 1;
}

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

.movie-card-body strong {
  min-height: 44px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 180ms ease;
}

.movie-card-link:hover strong,
.movie-card > a:hover strong {
  color: var(--emerald-2);
}

.movie-card-body em {
  min-height: 42px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted-2);
  font-size: 12px;
}

.movie-meta b {
  padding: 5px 8px;
  border-radius: 8px;
  color: var(--emerald-2);
  font-weight: 500;
  background: rgba(16, 185, 129, 0.14);
}

.movie-meta i {
  font-style: normal;
}

.movie-card-list .movie-card-link {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}

.movie-card-list .movie-thumb {
  height: 100%;
  min-height: 160px;
  aspect-ratio: auto;
}

.movie-card-list .movie-card-body {
  align-content: space-between;
}

.movie-card-list .movie-card-body strong {
  font-size: 19px;
}

.spotlight-section,
.ranking-strip {
  padding: 34px;
  margin-top: 58px;
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.28), rgba(8, 47, 73, 0.28));
}

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

.rank-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
}

.rank-row > span,
.ranking-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), #0e7490);
}

.rank-row > span {
  width: 38px;
  height: 38px;
}

.rank-card > a {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px;
}

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

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

.rank-card strong {
  color: #ffffff;
  font-size: 15px;
}

.rank-card em {
  margin: 4px 0;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-card small {
  color: var(--muted-2);
}

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

.category-tile {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.62);
  transition: 220ms ease;
}

.category-tile:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-3px);
}

.category-tile span,
.category-overview-head span,
.sub-hero span {
  display: inline-flex;
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--emerald-2);
  background: rgba(16, 185, 129, 0.14);
}

.category-tile strong {
  display: block;
  margin: 14px 0 10px;
  color: #ffffff;
  font-size: 22px;
}

.category-tile em {
  display: block;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.category-tile div {
  display: grid;
  gap: 8px;
}

.category-tile div a {
  color: #cbd5e1;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-tile div a:hover {
  color: var(--emerald-2);
}

.sub-hero,
.detail-hero {
  padding: 78px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 10%, rgba(16, 185, 129, 0.22), transparent 30rem),
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.14), transparent 24rem),
    rgba(2, 6, 23, 0.64);
}

.categories-stack {
  display: grid;
  gap: 28px;
}

.category-overview-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.58);
}

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

.category-overview-head h2 {
  margin: 14px 0 8px;
  font-size: 30px;
}

.category-overview-head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

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

.ranking-item > a {
  display: grid;
  grid-template-columns: 60px 150px 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px;
}

.ranking-number {
  width: 48px;
  height: 48px;
  font-size: 20px;
}

.ranking-item img {
  width: 150px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
}

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

.ranking-info strong {
  color: #ffffff;
  font-size: 20px;
}

.ranking-info em {
  margin: 8px 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 38px;
  margin-top: 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--emerald-2);
}

.breadcrumb em {
  color: #ffffff;
  font-style: normal;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-row a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.12);
}

.tag-row a:hover {
  color: #ffffff;
  background: rgba(16, 185, 129, 0.2);
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.player-section {
  padding-top: 42px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 30px;
  aspect-ratio: 16 / 9;
  background: #000000;
  box-shadow: var(--shadow);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  align-content: center;
  color: #ffffff;
  cursor: pointer;
  background:
    radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.26), rgba(2, 6, 23, 0.78));
  transition: 200ms ease;
}

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

.player-button {
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 36px;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.35);
  cursor: pointer;
}

.player-overlay strong {
  max-width: min(720px, calc(100% - 48px));
  text-align: center;
  font-size: clamp(22px, 4vw, 44px);
  line-height: 1.2;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding-top: 42px;
}

.detail-article,
.detail-info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.66);
}

.detail-article h2,
.detail-info-card h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 24px;
}

.detail-article p {
  margin: 0 0 24px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.9;
}

.detail-article p:last-child {
  margin-bottom: 0;
}

.detail-info-card dl {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px 18px;
  margin: 0;
}

.detail-info-card dt {
  color: var(--muted-2);
}

.detail-info-card dd {
  margin: 0;
  color: #e2e8f0;
}

.large-search {
  margin-top: 28px;
}

#search-results:empty {
  min-height: 90px;
}

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

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

.site-footer p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 17px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--emerald-2);
}

.footer-bottom {
  padding: 20px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  text-align: center;
  font-size: 14px;
}

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

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

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(2, 6, 23, 0.94);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link {
    text-align: center;
  }

  .hero {
    height: 78vh;
    min-height: 560px;
  }

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

  .home-search,
  .section-head,
  .category-overview-head {
    align-items: stretch;
    flex-direction: column;
  }

  .global-search,
  .home-search {
    width: 100%;
  }

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

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

  .movie-list-grid,
  .rank-grid,
  .detail-content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-poster {
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    height: 64px;
  }

  .site-logo {
    font-size: 16px;
  }

  .site-logo-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-control {
    display: none;
  }

  .hero-content {
    padding: 40px 0 82px;
  }

  .hero h1,
  .sub-hero h1,
  .detail-hero h1 {
    font-size: 38px;
  }

  .global-search {
    flex-direction: column;
  }

  .content-section {
    padding-top: 42px;
  }

  .movie-grid,
  .compact-grid,
  .all-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-list .movie-card-link,
  .ranking-item > a {
    grid-template-columns: 1fr;
  }

  .ranking-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .spotlight-section,
  .ranking-strip,
  .detail-article,
  .detail-info-card {
    padding: 20px;
    border-radius: 22px;
  }

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