* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #1f2937;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 45%, #f4f7fb 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, rgba(255, 241, 242, 0.92), rgba(255, 255, 255, 0.94), rgba(240, 253, 250, 0.92));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 63, 94, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.site-nav {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #fb7185, #14b8a6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, #fb7185, #14b8a6);
  box-shadow: 0 10px 22px rgba(251, 113, 133, 0.28);
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #475569;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #e11d48;
  background: rgba(255, 228, 230, 0.82);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: #334155;
  background: white;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 18px;
}

.mobile-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: #475569;
  font-weight: 700;
}

.mobile-panel a:hover {
  background: rgba(255, 228, 230, 0.82);
  color: #e11d48;
}

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

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 1.2s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 32%, rgba(20, 184, 166, 0.32), transparent 28%),
    radial-gradient(circle at 16% 24%, rgba(251, 113, 133, 0.34), transparent 32%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.72) 46%, rgba(15, 23, 42, 0.28));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 680px;
  margin: 0 auto;
  padding: 86px 24px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  color: white;
}

.hero-eyebrow,
.page-hero span,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.92), rgba(20, 184, 166, 0.92));
  box-shadow: 0 12px 26px rgba(20, 184, 166, 0.18);
  font-size: 14px;
  font-weight: 800;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-copy h2 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 52px);
  color: #ccfbf1;
}

.hero-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.9;
}

.hero-tags,
.detail-tags,
.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 24px 0 0;
}

.hero-tags span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  padding: 7px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.primary-btn {
  color: white;
  background: linear-gradient(135deg, #fb7185, #14b8a6);
  box-shadow: 0 18px 40px rgba(251, 113, 133, 0.28);
}

.primary-btn:hover,
.section-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(20, 184, 166, 0.24);
}

.ghost-btn {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(3deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fb7185;
  background: rgba(255, 255, 255, 0.92);
  font-size: 30px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.25);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-dot.active {
  width: 36px;
  background: white;
}

.home-intro,
.content-section,
.split-section,
.detail-content,
.player-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 24px 0;
}

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

.intro-card,
.category-overview-card,
.story-card,
.filter-panel {
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
}

.intro-card {
  padding: 28px;
}

.intro-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, #fb7185, #14b8a6);
}

.intro-card strong {
  display: block;
  font-size: 22px;
  color: #0f172a;
}

.intro-card p,
.section-heading p,
.category-overview-head em,
.movie-info p,
.site-footer p,
.story-card p,
.page-hero p,
.detail-one-line {
  color: #64748b;
  line-height: 1.8;
}

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

.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: #0f172a;
}

.section-heading p {
  margin: 10px 0 0;
  max-width: 680px;
}

.section-link {
  flex: 0 0 auto;
  color: white;
  background: linear-gradient(135deg, #fb7185, #14b8a6);
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 28px;
  background: #0f172a;
  isolation: isolate;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.14);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.5s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.82));
}

.category-tile span,
.category-tile strong {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 20px;
  color: white;
}

.category-tile span {
  margin-top: 104px;
  font-size: 24px;
  font-weight: 900;
}

.category-tile strong {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.category-tile:hover img {
  transform: scale(1.08);
}

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  transition: 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.14);
}

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

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

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

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.76));
  opacity: 0;
  transition: 0.25s ease;
}

.movie-card:hover .movie-poster::after {
  opacity: 1;
}

.movie-type,
.movie-duration,
.movie-play {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.movie-type {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  background: linear-gradient(135deg, #fb7185, #14b8a6);
}

.movie-duration {
  right: 12px;
  top: 12px;
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.72);
}

.movie-play {
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.86);
  color: #fb7185;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transition: 0.25s ease;
}

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

.movie-info {
  padding: 18px;
}

.movie-title {
  display: block;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.movie-title:hover {
  color: #e11d48;
}

.movie-meta {
  margin-top: 8px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

.movie-info p {
  min-height: 52px;
  margin: 10px 0 14px;
  font-size: 14px;
}

.movie-tags span,
.detail-tags span {
  padding: 5px 9px;
  color: #0f766e;
  background: #ccfbf1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
}

.rank-list,
.rank-page-list {
  display: grid;
  gap: 12px;
}

.rank-item {
  display: grid;
  grid-template-columns: 44px 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  transition: 0.25s ease;
}

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

.rank-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, #fb7185, #14b8a6);
}

.rank-item img {
  width: 68px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

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

.rank-body strong {
  color: #0f172a;
  font-size: 15px;
}

.rank-body em {
  margin-top: 5px;
  color: #64748b;
  font-size: 12px;
  font-style: normal;
}

.rank-score {
  color: #e11d48;
  font-size: 18px;
  font-weight: 900;
}

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

.compact-card .movie-info p {
  min-height: auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(251, 113, 133, 0.18), transparent 28%),
    radial-gradient(circle at 80% 24%, rgba(20, 184, 166, 0.2), transparent 30%),
    linear-gradient(135deg, #fff1f2, #ffffff 45%, #f0fdfa);
}

.small-hero > div {
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 24px 60px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 18px 0 0;
  color: #0f172a;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 17px;
}

.category-overview-grid {
  display: grid;
  gap: 24px;
}

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

.category-overview-head {
  display: block;
  margin-bottom: 20px;
}

.category-overview-head span {
  display: block;
  color: #0f172a;
  font-size: 26px;
  font-weight: 900;
}

.category-overview-head em {
  display: block;
  margin-top: 8px;
  font-style: normal;
}

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

.filter-panel {
  margin-bottom: 28px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2fr;
  gap: 16px;
  align-items: center;
}

.search-box input,
.filter-controls select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  outline: none;
  color: #334155;
  background: #fff;
}

.search-box input {
  padding: 0 18px;
}

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

.filter-controls select {
  padding: 0 14px;
}

.hidden-by-filter {
  display: none !important;
}

.detail-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #0f172a;
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(1.1);
  transform: scale(1.06);
}

.detail-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 184, 166, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.72));
}

.detail-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 540px;
  margin: 0 auto;
  padding: 68px 24px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  color: white;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.42);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #ccfbf1;
}

.detail-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

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

.player-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 30px 76px rgba(15, 23, 42, 0.22);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.28s ease;
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.74));
}

.play-button {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  color: #fb7185;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.28);
  font-size: 34px;
  cursor: pointer;
  transition: 0.25s ease;
}

.play-button:hover {
  transform: scale(1.08);
}

.detail-content {
  display: grid;
  gap: 22px;
}

.story-card {
  padding: 28px;
}

.story-card h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 28px;
}

.story-card p {
  margin: 0;
  font-size: 16px;
}

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

.info-grid div {
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
}

.info-grid strong,
.info-grid span,
.info-grid a {
  display: block;
}

.info-grid strong {
  margin-bottom: 8px;
  color: #94a3b8;
  font-size: 13px;
}

.info-grid span,
.info-grid a {
  color: #0f172a;
  font-weight: 800;
  line-height: 1.6;
}

.related-grid {
  padding-bottom: 30px;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px 24px 24px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  max-width: 560px;
  margin: 12px 0 0;
}

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

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #475569;
  background: white;
  font-weight: 800;
}

.footer-links a:hover {
  color: #e11d48;
}

.copyright {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 34px;
  color: #94a3b8;
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 90;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #fb7185, #14b8a6);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
  }
}

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

  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .hero-carousel,
  .hero-inner {
    min-height: 720px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 64px;
    gap: 28px;
  }

  .hero-poster {
    width: min(270px, 68vw);
    margin: 0 auto;
  }

  .home-intro,
  .split-section,
  .detail-inner,
  .filter-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

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

  .movie-grid,
  .category-grid,
  .mini-grid,
  .side-grid,
  .filter-controls,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .site-nav,
  .mobile-panel,
  .home-intro,
  .content-section,
  .split-section,
  .detail-content,
  .player-section,
  .small-hero > div {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .movie-grid,
  .category-grid,
  .mini-grid,
  .side-grid,
  .filter-controls,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-item {
    grid-template-columns: 36px 58px minmax(0, 1fr);
  }

  .rank-score {
    grid-column: 3;
  }

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