*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: #1f2937;
  background: linear-gradient(180deg, #fdf2f8 0%, #ffffff 42%, #fff1f2 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid #fce7f3;
  box-shadow: 0 10px 28px rgba(244, 114, 182, 0.14);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #fb7185);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.36);
}

.logo-text {
  font-size: 22px;
  background: linear-gradient(90deg, #ec4899, #f43f5e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.main-nav a,
.dropdown-button {
  color: #374151;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.dropdown-button:hover {
  color: #ec4899;
  transform: translateY(-1px);
}

.dropdown {
  position: relative;
}

.dropdown-button {
  border: 0;
  background: transparent;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 700;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  padding: 8px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #fce7f3;
  box-shadow: 0 24px 48px rgba(190, 24, 93, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #4b5563;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #fdf2f8;
  color: #db2777;
}

.header-search {
  position: relative;
  width: min(270px, 30vw);
}

.header-search input {
  width: 100%;
  height: 40px;
  padding: 0 44px 0 18px;
  border: 1px solid #fbcfe8;
  border-radius: 999px;
  background: #ffffff;
  outline: none;
  color: #374151;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus {
  border-color: #f472b6;
  box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.18);
}

.header-search button {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #fb7185);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fdf2f8;
  color: #be185d;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid #fce7f3;
  background: #ffffff;
  padding: 16px 24px 22px;
}

.mobile-panel.is-open {
  display: block;
  animation: slideDown 0.25s ease;
}

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

.mobile-panel a:hover {
  background: #fdf2f8;
  color: #db2777;
}

.mobile-search {
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
}

.mobile-search input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid #fbcfe8;
  outline: none;
}

.mobile-search button {
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #fb7185);
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #111827;
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-slide.is-active .hero-image {
  animation: slowZoom 7s ease both;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.38) 46%, rgba(17, 24, 39, 0.18));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.hero-copy {
  width: min(900px, 100%);
  color: #ffffff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.hero p {
  margin: 0 auto 30px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-soft,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #fb7185);
  box-shadow: 0 16px 35px rgba(236, 72, 153, 0.34);
}

.btn-primary:hover,
.btn-soft:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

.btn-soft {
  color: #be185d;
  background: #fdf2f8;
}

.btn-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

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

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

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

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.main-section {
  padding: 64px 0;
}

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

.section-title {
  margin: 0;
  color: #1f2937;
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-subtitle {
  margin: 8px 0 0;
  color: #6b7280;
  line-height: 1.7;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 136px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(251, 207, 232, 0.75);
  box-shadow: 0 16px 34px rgba(190, 24, 93, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.category-tile:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 24px 50px rgba(190, 24, 93, 0.14);
}

.category-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #fb7185);
  box-shadow: 0 10px 24px rgba(236, 72, 153, 0.28);
}

.category-tile h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.category-tile p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #6b7280;
  line-height: 1.65;
  font-size: 14px;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #fce7f3;
  box-shadow: 0 14px 32px rgba(190, 24, 93, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: #fbcfe8;
  box-shadow: 0 24px 54px rgba(190, 24, 93, 0.16);
}

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8, #fff1f2);
}

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

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

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.56), rgba(17, 24, 39, 0.02));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.card-badge,
.card-duration {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
}

.card-badge {
  top: 10px;
  left: 10px;
}

.card-duration {
  right: 10px;
  bottom: 10px;
}

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  min-height: 50px;
  margin: 0 0 8px;
  overflow: hidden;
  color: #1f2937;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .card-title {
  color: #db2777;
}

.card-desc {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #6b7280;
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: #be185d;
  background: #fce7f3;
  font-weight: 800;
  white-space: nowrap;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 190px));
  gap: 12px;
  border-radius: 24px;
  border: 1px solid #fce7f3;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(190, 24, 93, 0.08);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #fbcfe8;
  border-radius: 14px;
  background: #ffffff;
  outline: none;
  color: #374151;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #f472b6;
  box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.16);
}

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

.rank-card {
  display: grid;
  grid-template-columns: 58px 176px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid #fce7f3;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(190, 24, 93, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(190, 24, 93, 0.13);
}

.rank-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #fb7185);
  font-weight: 950;
  font-size: 18px;
}

.rank-cover {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #fdf2f8;
}

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

.rank-info h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 950;
}

.rank-info p {
  margin: 0;
  color: #6b7280;
  line-height: 1.65;
}

.rank-metric {
  display: grid;
  justify-items: end;
  gap: 6px;
  color: #be185d;
  font-weight: 900;
}

.page-hero {
  padding: 70px 0 44px;
  background: radial-gradient(circle at top left, rgba(244, 114, 182, 0.2), transparent 34%), linear-gradient(135deg, #fff1f2, #ffffff 54%, #fdf2f8);
}

.page-hero h1 {
  margin: 0 0 14px;
  color: #1f2937;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p {
  margin: 0;
  max-width: 760px;
  color: #6b7280;
  font-size: 17px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #6b7280;
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #db2777;
  font-weight: 800;
}

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

.detail-panel,
.side-panel {
  border-radius: 26px;
  border: 1px solid #fce7f3;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(190, 24, 93, 0.09);
}

.detail-panel {
  padding: 24px;
}

.side-panel {
  position: sticky;
  top: 88px;
  padding: 20px;
}

.player-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.24);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(244, 114, 182, 0.28), rgba(17, 24, 39, 0.62));
  cursor: pointer;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-button-core {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateY(8px);
  transition: transform 0.22s ease;
}

.player-overlay:hover .play-button-core {
  transform: translateY(0) scale(1.04);
}

.play-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #fb7185);
  box-shadow: 0 20px 45px rgba(236, 72, 153, 0.38);
  font-size: 32px;
}

.play-text {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

.detail-title {
  margin: 24px 0 14px;
  color: #111827;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-lead {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

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

.meta-item {
  padding: 14px;
  border-radius: 18px;
  background: #fdf2f8;
}

.meta-label {
  display: block;
  margin-bottom: 5px;
  color: #9d174d;
  font-size: 12px;
  font-weight: 900;
}

.meta-value {
  color: #1f2937;
  font-weight: 850;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #be185d;
  background: #fce7f3;
  font-size: 13px;
  font-weight: 850;
}

.prose-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #fce7f3;
}

.prose-block h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 24px;
  font-weight: 950;
}

.prose-block p {
  margin: 0;
  color: #4b5563;
  line-height: 1.9;
  font-size: 16px;
}

.side-panel h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 20px;
  font-weight: 950;
}

.side-link {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #fce7f3;
}

.side-link:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.side-link img {
  width: 94px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
  background: #fdf2f8;
}

.side-link strong {
  display: -webkit-box;
  overflow: hidden;
  color: #1f2937;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.side-link span {
  display: block;
  margin-top: 6px;
  color: #be185d;
  font-size: 13px;
  font-weight: 850;
}

.site-footer {
  margin-top: 64px;
  padding: 46px 0 28px;
  border-top: 2px solid #fce7f3;
  background: linear-gradient(135deg, #fdf2f8, #fff1f2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #be185d;
  font-size: 18px;
  font-weight: 950;
}

.site-footer p,
.site-footer a {
  color: #6b7280;
  line-height: 1.8;
  font-size: 14px;
}

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

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

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #fbcfe8;
  color: #9ca3af;
  text-align: center;
  font-size: 13px;
}

.empty-state {
  display: none;
  padding: 36px;
  border-radius: 24px;
  color: #6b7280;
  text-align: center;
  background: #ffffff;
  border: 1px solid #fce7f3;
}

.empty-state.is-visible {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.1);
  }
}

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

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

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

  .side-panel {
    position: static;
  }
}

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

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

  .hero {
    height: 520px;
  }

  .hero-arrow {
    display: none;
  }

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

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

  .rank-card {
    grid-template-columns: 44px 120px 1fr;
  }

  .rank-metric {
    grid-column: 2 / -1;
    justify-items: start;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .container {
    width: min(100% - 28px, 1280px);
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    height: 500px;
  }

  .hero-content {
    padding: 38px 18px;
  }

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

  .category-grid,
  .movie-grid,
  .movie-grid.compact,
  .filter-panel,
  .meta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .rank-cover {
    grid-column: 1 / -1;
  }

  .detail-panel {
    padding: 16px;
    border-radius: 22px;
  }

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

  .play-icon {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}
