:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --blue-600: #2563eb;
  --indigo-700: #4338ca;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
  --rose-500: #f43f5e;
  --amber-500: #f59e0b;
  --emerald-500: #10b981;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(135deg, var(--gray-50), var(--sky-50));
  color: var(--gray-800);
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.nav-wrap {
  max-width: 1280px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sky-600);
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sky-600), var(--blue-600));
  color: var(--white);
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.35);
}

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

.desktop-nav a,
.mobile-nav a {
  color: var(--gray-700);
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav .current,
.mobile-nav a:hover {
  color: var(--sky-600);
}

.top-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.page-filter-input {
  width: 240px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input:focus,
.mobile-search input:focus,
.page-filter-input:focus {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.top-search button,
.mobile-search button,
.primary-btn,
.ghost-btn,
.back-to-top {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.top-search button,
.mobile-search button,
.primary-btn {
  background: var(--sky-600);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(2, 132, 199, 0.28);
}

.top-search button:hover,
.mobile-search button:hover,
.primary-btn:hover {
  background: var(--sky-700);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--gray-700);
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
}

.mobile-search {
  align-items: stretch;
  margin-top: 12px;
}

.mobile-search input {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background: linear-gradient(120deg, var(--sky-600), var(--blue-600), var(--indigo-700));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.24), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.35), transparent 30%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.42));
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, var(--gray-50));
}

.hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 640px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: flex;
  align-items: center;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: 54px;
  align-items: center;
  width: 100%;
  color: var(--white);
}

.hero-slide.is-active {
  display: grid;
  animation: fadeUp 0.55s ease both;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sky-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.page-hero .eyebrow,
.cta-section .eyebrow {
  color: var(--sky-100);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 850;
}

.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.7;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.hero-tags span,
.detail-tags a,
.filter-buttons button {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

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

.hero-actions .primary-btn {
  background: var(--white);
  color: var(--sky-600);
}

.ghost-btn {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.ghost-btn:hover {
  background: var(--white);
  color: var(--sky-600);
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.42);
  transform: rotate(1deg);
}

.hero-poster::before {
  content: "";
  display: block;
  padding-top: 128%;
}

.hero-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hero-poster:hover img {
  transform: scale(1.05);
}

.hero-dots {
  position: absolute;
  left: 24px;
  bottom: 54px;
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-dot {
  width: 38px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--white);
}

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

.section-white,
.section-soft {
  background: var(--white);
}

.section-soft {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

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

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.section-heading h2,
.page-hero h1,
.detail-main h1,
.cta-section h2 {
  margin: 0;
  color: var(--gray-800);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.section-heading a {
  color: var(--sky-600);
  font-weight: 800;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.movie-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--slate-800);
  aspect-ratio: 16 / 10;
}

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

.movie-card:hover .movie-cover img,
.compact-card:hover img,
.rank-item:hover img,
.ranking-row:hover img {
  transform: scale(1.07);
}

.cover-year {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 8px;
  padding: 4px 8px;
  background: rgba(15, 23, 42, 0.75);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

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

.movie-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--gray-800);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-title:hover,
.ranking-info a:hover h2,
.rank-item a:hover h3 {
  color: var(--sky-600);
}

.movie-card-body p,
.rank-item p,
.ranking-info p,
.category-tile em,
.category-overview-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gray-500);
  line-height: 1.65;
  -webkit-box-orient: vertical;
}

.movie-card-body p {
  min-height: 42px;
  margin: 8px 0 14px;
  font-size: 13px;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-500);
  font-size: 12px;
}

.movie-meta span:first-child {
  border-radius: 999px;
  padding: 3px 8px;
  background: var(--sky-50);
  color: var(--sky-600);
  font-weight: 800;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.rank-cover {
  position: relative;
  min-height: 140px;
  overflow: hidden;
}

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

.rank-cover span {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-500);
  color: var(--white);
  font-weight: 900;
}

.rank-item div:last-child {
  padding: 18px 18px 18px 0;
}

.rank-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--gray-800);
}

.rank-item p {
  margin: 0 0 14px;
  font-size: 14px;
  -webkit-line-clamp: 2;
}

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

.category-tile,
.category-overview-card a {
  display: block;
  height: 100%;
  border-radius: 22px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card a:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-50);
  color: var(--sky-600);
  font-size: 24px;
}

.category-tile strong,
.category-overview-card h2 {
  display: block;
  margin: 0 0 10px;
  color: var(--gray-800);
  font-size: 20px;
  font-weight: 900;
}

.category-tile em,
.category-overview-card p {
  font-style: normal;
  font-size: 14px;
  -webkit-line-clamp: 3;
}

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

.compact-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.compact-card img {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.compact-card span {
  display: block;
  padding: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--gray-800);
  font-weight: 800;
  font-size: 13px;
}

.cta-section {
  margin: 40px auto 0;
  padding: 80px 24px;
  background: linear-gradient(120deg, var(--sky-600), var(--blue-600));
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
}

.cta-section p {
  max-width: 760px;
  margin: 18px auto 28px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.75;
}

.page-hero {
  padding: 84px 24px;
  background: linear-gradient(120deg, var(--slate-800), var(--sky-700));
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0 auto 18px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
}

.page-hero p:not(.eyebrow) {
  max-width: 900px;
  margin: 0 auto;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

.category-page-hero {
  text-align: left;
}

.category-page-hero h1,
.category-page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.filter-panel {
  margin-bottom: 30px;
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.filter-panel input {
  width: 100%;
  margin-bottom: 16px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-buttons button {
  border: 0;
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
}

.filter-buttons button:hover,
.filter-buttons button.is-active {
  background: var(--sky-600);
  color: var(--white);
}

.category-overview-card {
  min-height: 245px;
}

.mini-cover-row {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.mini-cover-row img {
  width: 20%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  object-fit: cover;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 72px 138px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.ranking-number {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-50);
  color: var(--sky-600);
  font-weight: 950;
}

.ranking-poster {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 10;
}

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

.ranking-info h2 {
  margin: 0 0 8px;
  color: var(--gray-800);
  font-size: 22px;
}

.ranking-info p {
  margin: 0 0 12px;
  -webkit-line-clamp: 2;
}

.player-shell {
  background: #020617;
  padding: 34px 24px;
}

.player-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 32px 90px rgba(2, 6, 23, 0.55);
}

.site-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.56));
  cursor: pointer;
}

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

.player-start span {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  background: var(--sky-600);
  color: var(--white);
  font-size: 36px;
  box-shadow: 0 22px 40px rgba(2, 132, 199, 0.42);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.player-start:hover span {
  transform: scale(1.06);
  background: var(--sky-700);
}

.detail-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 24px 80px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--gray-500);
  font-size: 14px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: 20px;
  background: var(--slate-800);
}

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

.detail-main h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.detail-line {
  margin: 16px 0 18px;
  color: var(--gray-700);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 700;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}

.detail-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--sky-50);
  color: var(--sky-600);
  font-weight: 800;
  font-size: 13px;
}

.detail-tags a {
  background: var(--gray-100);
  color: var(--gray-700);
}

.detail-tags a:hover {
  background: var(--sky-600);
  color: var(--white);
}

.detail-section {
  padding: 18px 0;
  border-top: 1px solid var(--gray-200);
}

.detail-section h2 {
  margin: 0 0 12px;
  color: var(--gray-800);
  font-size: 24px;
}

.detail-section p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.9;
}

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

.site-footer {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  color: var(--white);
}

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

.footer-logo {
  color: var(--white);
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #cbd5e1;
  line-height: 1.75;
}

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

.site-footer h2 {
  margin: 0 0 14px;
  color: #7dd3fc;
  font-size: 18px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.back-to-top {
  background: var(--sky-600);
  color: var(--white);
}

.is-hidden-card {
  display: none !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .mobile-toggle {
    display: block;
  }

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

  .hero-poster {
    max-width: 360px;
  }

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

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

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

@media (max-width: 860px) {
  .nav-wrap {
    padding: 0 16px;
  }

  .logo,
  .footer-logo {
    font-size: 20px;
  }

  .hero-wrap {
    padding: 42px 18px 90px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

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

  .featured-grid,
  .four-grid,
  .all-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .ranking-row {
    grid-template-columns: 48px 96px 1fr;
    gap: 12px;
  }

  .ranking-number {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .detail-poster img {
    min-height: 0;
    max-height: 520px;
  }
}

@media (max-width: 560px) {
  .hero-section,
  .hero-wrap {
    min-height: 610px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy h2 {
    font-size: 24px;
  }

  .hero-poster {
    display: none;
  }

  .featured-grid,
  .four-grid,
  .all-grid,
  .related-grid,
  .category-grid,
  .category-overview-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-cover {
    aspect-ratio: 16 / 9;
  }

  .ranking-row {
    grid-template-columns: 42px 1fr;
  }

  .ranking-poster {
    display: none;
  }

  .section-wrap,
  .detail-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .player-shell {
    padding: 16px;
  }

  .player-wrap {
    border-radius: 14px;
  }
}
