:root {
  --bg: #fff7ed;
  --bg-soft: #fffbeb;
  --card: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --amber: #f59e0b;
  --amber-dark: #b45309;
  --orange: #f97316;
  --yellow: #eab308;
  --shadow: 0 18px 45px rgba(146, 64, 14, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 44%, #fef3c7 100%);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(251, 191, 36, 0.28);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 35px rgba(180, 83, 9, 0.16);
}

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

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

.brand-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 24px;
  background: linear-gradient(135deg, #facc15, #f59e0b 50%, #f97316);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.35);
  transition: transform 0.28s ease;
}

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

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

.brand-name {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #d97706, #ea580c, #ca8a04);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-subtitle {
  font-size: 0.76rem;
  color: #78716c;
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 800;
  color: #57534e;
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--amber-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

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

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #9a3412;
}

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

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  color: #57534e;
}

.mobile-link:hover,
.mobile-link.active {
  background: #ffedd5;
  color: var(--amber-dark);
}

.hero-slider {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease, transform 1.2s ease;
}

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

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 40%, rgba(251, 191, 36, 0.25), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.78), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(720px, 100%);
  color: #ffffff;
  padding: 120px 0 110px;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.25);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 18px 0 16px;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 640px;
  margin: 0;
  color: #f5f5f4;
  font-size: clamp(1.06rem, 2.2vw, 1.35rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-meta span,
.detail-meta span,
.rank-meta span,
.movie-card-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  padding: 6px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 26px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  box-shadow: 0 18px 35px rgba(245, 158, 11, 0.35);
}

.secondary-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.hero-arrow,
.hero-dot {
  pointer-events: auto;
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 2rem;
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
  background: var(--amber);
  transform: scale(1.05);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

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

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

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

.home-intro {
  padding-top: 72px;
}

.section-heading {
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-heading h2,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
  color: var(--muted);
}

.section-heading a {
  color: var(--amber-dark);
  font-weight: 900;
}

.center-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

.center-heading p {
  max-width: 720px;
  margin: 0;
}

.search-panel {
  margin: 0 0 30px;
  padding: 20px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.search-box {
  display: grid;
  gap: 8px;
  color: #92400e;
  font-weight: 900;
}

.search-box input {
  width: 100%;
  height: 50px;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  padding: 0 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
  background: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-box input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.filter-chip {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 900;
  color: #92400e;
  background: #ffedd5;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  transform: translateY(-1px);
}

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

.small-grid {
  margin-top: 34px;
}

.category-card {
  min-height: 156px;
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff, #fff7ed);
  border: 1px solid rgba(251, 191, 36, 0.34);
  box-shadow: 0 14px 35px rgba(146, 64, 14, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(146, 64, 14, 0.18);
}

.category-card span {
  display: block;
  margin-bottom: 10px;
  color: #9a3412;
  font-size: 1.2rem;
  font-weight: 900;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(146, 64, 14, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(146, 64, 14, 0.2);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #451a03, #92400e);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent 58%);
  opacity: 0.9;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.88);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.92);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #92400e;
}

.movie-card-meta span {
  background: #ffedd5;
  font-size: 0.76rem;
}

.movie-card h3 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--amber-dark);
}

.movie-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-card .movie-card-body {
  padding: 13px;
}

.compact-card h3 {
  font-size: 0.98rem;
}

.compact-card p {
  -webkit-line-clamp: 2;
}

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.movie-tags span {
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  padding: 4px 9px;
  font-size: 0.74rem;
  font-weight: 800;
}

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

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

.rank-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  overflow: hidden;
  border-radius: 24px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(146, 64, 14, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.24);
}

.rank-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: #451a03;
}

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

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

.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.rank-info h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.rank-info h3 a:hover {
  color: var(--amber-dark);
}

.rank-info p {
  margin: 0 0 12px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #92400e;
}

.rank-meta span {
  background: #ffedd5;
  font-size: 0.78rem;
}

.sub-page {
  padding-bottom: 40px;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: clamp(42px, 7vw, 76px);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 85% 20%, rgba(251, 191, 36, 0.42), transparent 30%),
    linear-gradient(135deg, #ffffff, #fff7ed 46%, #fef3c7);
  border: 1px solid rgba(251, 191, 36, 0.34);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin-top: 18px;
}

.page-hero p {
  max-width: 720px;
  margin: 14px 0 0;
  font-size: 1.08rem;
}

.ranking-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(248, 113, 113, 0.36), transparent 28%),
    linear-gradient(135deg, #fff7ed, #fef3c7);
}

.category-hero {
  background:
    radial-gradient(circle at 80% 15%, rgba(245, 158, 11, 0.35), transparent 32%),
    linear-gradient(135deg, #ffffff, #fffbeb);
}

.detail-page {
  padding-bottom: 48px;
}

.detail-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto;
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 34px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 24%, rgba(245, 158, 11, 0.25), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.96));
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  background: #451a03;
  box-shadow: 0 20px 45px rgba(146, 64, 14, 0.22);
}

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

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #92400e;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 16px;
}

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

.detail-info h1 {
  margin-bottom: 16px;
}

.detail-one-line {
  margin: 0;
  color: #57534e;
  font-size: 1.14rem;
}

.detail-meta {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 22px 0 4px;
  color: #92400e;
}

.detail-meta span {
  background: #ffedd5;
}

.detail-tags {
  margin-bottom: 24px;
}

.player-section,
.detail-content,
.related-section {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
}

.player-start span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  font-size: 2rem;
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.38);
  transition: transform 0.25s ease;
}

.player-start:hover span {
  transform: scale(1.08);
}

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

.detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.story-card {
  padding: clamp(24px, 4vw, 34px);
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(251, 191, 36, 0.26);
  box-shadow: 0 14px 36px rgba(146, 64, 14, 0.12);
}

.story-card h2 {
  margin: 0 0 14px;
  font-size: 1.55rem;
}

.story-card p {
  margin: 0;
  color: #57534e;
}

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

[data-movie-card].is-hidden {
  display: none;
}

.site-footer {
  margin-top: 50px;
  color: #fff7ed;
  background: linear-gradient(90deg, #78350f, #9a3412, #713f12);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #fde68a;
}

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

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: #fed7aa;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(254, 215, 170, 0.25);
  color: #fcd34d;
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

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

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

  .hero-slider,
  .hero-inner {
    min-height: 590px;
  }

  .hero-copy {
    padding: 96px 0 120px;
  }

  .hero-controls {
    bottom: 22px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

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

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

  .detail-poster img {
    min-height: auto;
    aspect-ratio: 3 / 4;
  }

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

@media (max-width: 560px) {
  .brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .hero-slider,
  .hero-inner {
    min-height: 560px;
  }

  .hero-meta span {
    font-size: 0.78rem;
  }

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

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

  .home-section {
    padding: 44px 0;
  }

  .section-heading {
    display: grid;
    gap: 10px;
  }

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

  .rank-card {
    grid-template-columns: 118px 1fr;
    gap: 12px;
    padding: 10px;
  }

  .rank-info p {
    -webkit-line-clamp: 2;
  }

  .page-hero,
  .detail-hero {
    border-radius: 24px;
  }

  .player-start span {
    width: 66px;
    height: 66px;
  }

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