* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #020617;
  color: #e5e7eb;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #1e293b;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 0 26px rgba(6, 182, 212, 0.42);
  font-size: 13px;
}

.brand-text {
  font-size: 22px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  color: #cbd5e1;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.is-active,
.mobile-link.is-active {
  color: #ffffff;
}

.header-search,
.mobile-search,
.intro-search {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 12px;
  color: #64748b;
}

.header-search input,
.mobile-search input,
.intro-search input,
.local-search-input {
  width: 100%;
  border: 1px solid #334155;
  border-radius: 12px;
  outline: none;
  color: #e2e8f0;
  background: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 256px;
  padding: 10px 14px 10px 38px;
}

.mobile-search input,
.local-search-input {
  padding: 12px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.intro-search input:focus,
.local-search-input:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  color: #cbd5e1;
  background: #1e293b;
}

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

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

.mobile-nav {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.site-main {
  background:
    radial-gradient(circle at top left, rgba(6, 182, 212, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 12%, rgba(37, 99, 235, 0.16), transparent 28rem),
    #020617;
}

.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0.88) 42%, rgba(15, 23, 42, 0.18) 100%),
    linear-gradient(0deg, #020617 0%, transparent 45%);
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1280px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  display: grid;
  gap: 24px;
  max-width: 1280px;
}

.hero-content h1,
.hero-content h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 680px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #22d3ee;
  font-size: 14px;
}

.hero-meta span,
.detail-meta span {
  padding: 6px 12px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.14);
  backdrop-filter: blur(4px);
}

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

.primary-button,
.ghost-button,
.intro-search button,
.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button,
.intro-search button {
  border: 0;
  color: #ffffff;
  background: #06b6d4;
}

.primary-button:hover,
.intro-search button:hover {
  background: #0891b2;
  transform: translateY(-1px);
}

.ghost-button,
.more-link {
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.68);
}

.ghost-button:hover,
.more-link:hover {
  border-color: rgba(34, 211, 238, 0.55);
  color: #ffffff;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(6px);
  transform: translateY(-50%);
  font-size: 32px;
  line-height: 1;
}

.hero-control:hover {
  background: rgba(15, 23, 42, 0.85);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 32px;
  background: #06b6d4;
}

.intro-section,
.content-section,
.page-hero,
.detail-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 32px;
  align-items: center;
  padding: 54px 0 20px;
}

.intro-copy h2,
.page-hero h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.intro-copy p,
.page-hero p {
  margin: 0;
  max-width: 760px;
  color: #94a3b8;
  font-size: 17px;
}

.intro-search {
  gap: 12px;
}

.intro-search input {
  padding: 14px 16px;
}

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

.feature-panel {
  width: min(1280px, calc(100% - 32px));
  padding: 42px;
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.84));
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.35);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.accent-bar {
  width: 4px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #06b6d4, #2563eb);
}

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.section-heading h2 span {
  color: #22d3ee;
}

.section-heading p {
  margin: 6px 0 0;
  color: #94a3b8;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #1e293b;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-card {
  padding: 24px;
  min-height: 150px;
}

.category-card::after,
.category-overview-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.14);
  filter: blur(6px);
}

.category-card:hover,
.category-overview-card:hover,
.movie-card:hover,
.horizontal-card:hover,
.ranking-row:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.42);
  box-shadow: 0 20px 45px rgba(6, 182, 212, 0.12);
}

.category-card span,
.category-overview-card h2 {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.category-card p,
.category-overview-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
}

.category-overview-card {
  padding: 18px;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.category-thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
  background: #0f172a;
}

.category-overview-card > span {
  display: inline-flex;
  margin-top: 18px;
  color: #22d3ee;
  font-weight: 700;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #1e293b;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.poster-wrap {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0f172a;
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.38) 48%, transparent 100%);
}

.type-badge,
.score-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 5px 9px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.86);
  backdrop-filter: blur(4px);
}

.type-badge {
  right: 12px;
}

.score-badge {
  left: 12px;
  color: #67e8f9;
}

.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(6, 182, 212, 0.9);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.poster-wrap figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px;
}

.poster-wrap h3,
.horizontal-card h3,
.ranking-row h3 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poster-wrap p,
.horizontal-card p,
.ranking-row p {
  margin: 8px 0 0;
  color: #cbd5e1;
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.card-tags {
  margin-top: 10px;
}

.card-tags span,
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(14, 165, 233, 0.14);
  font-size: 12px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.horizontal-list {
  display: grid;
  gap: 16px;
}

.horizontal-card,
.ranking-row {
  display: grid;
  align-items: center;
  border: 1px solid #1e293b;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.7);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.horizontal-card {
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
}

.horizontal-card img {
  width: 116px;
  height: 116px;
  border-radius: 14px;
  object-fit: cover;
  background: #0f172a;
}

.meta-line {
  margin-top: 8px;
  color: #64748b;
  font-size: 12px;
}

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

.ranking-row {
  grid-template-columns: 48px 72px minmax(0, 1fr) 64px;
  gap: 14px;
  padding: 12px;
}

.ranking-row img {
  width: 72px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  background: #0f172a;
}

.rank-number {
  color: #22d3ee;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.ranking-score {
  color: #fbbf24;
  font-size: 18px;
  font-weight: 900;
  text-align: right;
}

.more-link {
  margin-top: 20px;
}

.page-main {
  min-height: 70vh;
  padding-bottom: 48px;
}

.page-hero {
  padding: 72px 0 28px;
}

.compact-hero {
  text-align: center;
}

.compact-hero p {
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #94a3b8;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #22d3ee;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 24px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid #334155;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.84);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: #06b6d4;
  color: #ffffff;
  background: rgba(6, 182, 212, 0.24);
}

.toolbar {
  margin-bottom: 24px;
}

.search-toolbar {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.full-ranking .ranking-row {
  grid-template-columns: 60px 82px minmax(0, 1fr) 70px;
}

.empty-state {
  margin: 34px 0 0;
  padding: 24px;
  border: 1px solid #1e293b;
  border-radius: 18px;
  color: #94a3b8;
  text-align: center;
  background: rgba(15, 23, 42, 0.75);
}

.detail-main {
  padding-bottom: 54px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 48px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(16px);
  transform: scale(1.08);
  opacity: 0.34;
}

.detail-backdrop div {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.86), #020617 92%);
}

.detail-inner {
  position: relative;
  z-index: 1;
}

.detail-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.detail-poster {
  width: 280px;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  object-fit: cover;
  background: #0f172a;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.45);
}

.detail-copy h1 {
  margin: 18px 0 16px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 840px;
  margin: 0 0 18px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

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

.player-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 1040px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(6, 182, 212, 0.32);
  border-radius: 26px;
  background: #000000;
  box-shadow: 0 26px 80px rgba(6, 182, 212, 0.12);
}

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

.player-start {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.68));
}

.player-start span {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.92);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.45);
  font-size: 32px;
  transform: translateX(3px);
}

.player-card.is-ready .player-start {
  opacity: 0;
  pointer-events: none;
}

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

.story-panel,
.side-panel {
  border: 1px solid #1e293b;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.76);
  padding: 28px;
}

.story-panel h2,
.side-panel h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 24px;
}

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

.story-panel p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.95;
  font-size: 16px;
  white-space: pre-line;
}

.side-panel dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px 16px;
  margin: 0;
}

.side-panel dt {
  color: #64748b;
}

.side-panel dd {
  margin: 0;
  color: #e2e8f0;
}

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

.site-footer {
  border-top: 1px solid #1e293b;
  background: #0f172a;
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr) minmax(180px, 1fr);
  gap: 32px;
}

.footer-main p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: #ffffff;
}

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

.footer-column a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #22d3ee;
}

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #64748b;
  font-size: 14px;
}

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

  .header-search input {
    width: 210px;
  }

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

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

@media (max-width: 900px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slider {
    height: 560px;
  }

  .hero-content {
    top: 54%;
  }

  .hero-control {
    display: none;
  }

  .intro-section,
  .split-layout,
  .detail-content-grid,
  .detail-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    align-items: start;
  }

  .detail-poster {
    width: min(240px, 72vw);
  }

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

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

@media (max-width: 640px) {
  .brand-text {
    font-size: 19px;
  }

  .hero-slider {
    height: 540px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions,
  .intro-search {
    display: grid;
  }

  .hero-dots {
    bottom: 18px;
  }

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

  .feature-panel {
    padding: 24px;
    border-radius: 22px;
  }

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

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

  .poster-wrap figcaption {
    padding: 14px;
  }

  .horizontal-card {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .horizontal-card img {
    width: 94px;
    height: 112px;
  }

  .ranking-row,
  .full-ranking .ranking-row {
    grid-template-columns: 42px 62px minmax(0, 1fr);
  }

  .ranking-row img {
    width: 62px;
    height: 84px;
  }

  .ranking-score {
    display: none;
  }

  .rank-number {
    font-size: 18px;
  }

  .detail-hero {
    padding-top: 44px;
  }

  .story-panel,
  .side-panel {
    padding: 22px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }
}
