* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #e5eefb;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 34rem), linear-gradient(135deg, #020617 0%, #0f172a 42%, #111827 100%);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 138, 0.92), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(96, 165, 250, 0.28);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.36);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.38);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link,
.mobile-nav-link {
  color: #cbd5e1;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #ffffff;
  background: rgba(59, 130, 246, 0.18);
}

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

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-bar input {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  outline: none;
  padding: 11px 16px;
  min-width: 210px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.filter-bar input:focus {
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16);
  background: rgba(15, 23, 42, 0.96);
}

.header-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  color: #ffffff;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.68);
  cursor: pointer;
}

.mobile-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 4px;
  background: #e2e8f0;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

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

.hero-section {
  position: relative;
  height: 620px;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-stage,
.hero-slide,
.hero-media {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

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

.hero-shade,
.detail-backdrop div {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #020617 4%, rgba(2, 6, 23, 0.82) 42%, rgba(2, 6, 23, 0.26) 100%), linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.72) 48%, rgba(15, 23, 42, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 0 92px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 14px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.26);
}

.hero-content h1 {
  max-width: 780px;
  margin: 18px 0 16px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.98;
  color: #ffffff;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 44px rgba(2, 6, 23, 0.58);
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 20px;
  color: #dbeafe;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.68);
}

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

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
}

.secondary-button,
.filter-link {
  color: #e0f2fe;
  border: 1px solid rgba(125, 211, 252, 0.26);
  background: rgba(15, 23, 42, 0.62);
}

.primary-button:hover,
.secondary-button:hover,
.filter-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(14, 165, 233, 0.2);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 1;
  background: rgba(2, 6, 23, 0.52);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(37, 99, 235, 0.72);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

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

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

.section-header.compact {
  margin-bottom: 20px;
}

.section-header h2,
.side-title h2,
.player-title-row h2,
.detail-text-block h2 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
}

.section-header a,
.player-title-row a {
  color: #67e8f9;
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.22);
  transition: transform 0.22s ease, border 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.38);
  box-shadow: 0 24px 58px rgba(2, 132, 199, 0.18);
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.92));
}

.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .poster-image,
.ranking-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.06);
}

.poster-score {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #ffffff;
  font-weight: 900;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.26);
}

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

.movie-card-body h2 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.45;
}

.movie-card-body h2 a:hover,
.ranking-card h2 a:hover {
  color: #67e8f9;
}

.meta-row,
.detail-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #93c5fd;
  font-size: 0.9rem;
}

.movie-card-body p {
  min-height: 54px;
  margin: 12px 0;
  color: #cbd5e1;
  line-height: 1.65;
  font-size: 0.95rem;
}

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

.category-card {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.24), rgba(15, 23, 42, 0.82));
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.18);
  transition: transform 0.2s ease, border 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.52);
}

.category-card span {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
}

.category-card p {
  color: #cbd5e1;
  line-height: 1.65;
  margin: 12px 0 0;
}

.category-card strong {
  color: #67e8f9;
  margin-top: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.side-ranking {
  position: sticky;
  top: 96px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.68);
}

.side-list,
.ranking-list,
.horizontal-list {
  display: grid;
  gap: 14px;
}

.ranking-card {
  display: grid;
  grid-template-columns: auto 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.35);
  transition: border 0.2s ease, transform 0.2s ease;
}

.ranking-card:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.34);
}

.rank-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.rank-poster {
  overflow: hidden;
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.78);
}

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

.ranking-card h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1rem;
}

.ranking-card p {
  margin: 0 0 9px;
  color: #cbd5e1;
  line-height: 1.55;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.3), transparent 28rem), linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 58, 138, 0.72));
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.page-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.page-hero h1 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 1.1rem;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #bfdbfe;
  margin-bottom: 18px;
}

.breadcrumb a:hover {
  color: #67e8f9;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.62);
}

.filter-bar input {
  flex: 1 1 280px;
}

.rank-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.rank-tab {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  color: #cbd5e1;
  font-weight: 900;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.7);
  cursor: pointer;
}

.rank-tab.active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.ranking-panel {
  display: none;
}

.ranking-panel.active {
  display: block;
}

.search-page-form {
  margin-bottom: 18px;
}

.search-page-form input {
  flex: 1 1 auto;
  min-height: 52px;
  font-size: 1.05rem;
}

.search-summary {
  color: #bfdbfe;
  margin: 0 0 22px;
  font-weight: 800;
}

.empty-state {
  display: none;
  text-align: center;
  color: #94a3b8;
  padding: 50px 0;
  font-weight: 800;
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
}

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

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) saturate(1.1);
  transform: scale(1.06);
}

.detail-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 66px;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 74px rgba(2, 6, 23, 0.48);
  background: rgba(15, 23, 42, 0.82);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-info h1 {
  margin: 18px 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 780px;
  margin: 0 0 18px;
  color: #dbeafe;
  line-height: 1.85;
  font-size: 1.12rem;
}

.detail-meta {
  margin-bottom: 18px;
}

.player-section {
  padding-top: 0;
}

.player-card {
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 30px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.22);
}

.player-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  object-fit: contain;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.24), rgba(2, 6, 23, 0.42));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 7px;
  border-radius: 999px;
  font-size: 2.25rem;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.38);
}

.video-shell.is-playing .play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  padding-top: 10px;
}

.detail-text-block {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 26px;
  padding: 26px;
  background: rgba(15, 23, 42, 0.62);
}

.detail-text-block p {
  color: #cbd5e1;
  line-height: 1.92;
  margin: 14px 0 0;
  font-size: 1.02rem;
}

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

.info-list div {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 10px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.34);
}

.info-list dt {
  color: #93c5fd;
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  color: #e5eefb;
}

.horizontal-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
}

.horizontal-card .poster-wrap {
  aspect-ratio: 2 / 3;
}

.horizontal-card .movie-card-body p {
  min-height: auto;
}

.site-footer {
  margin-top: 44px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.56);
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 36px;
  padding: 44px 0;
}

.footer-brand p {
  max-width: 640px;
  color: #94a3b8;
  line-height: 1.75;
}

.footer-links h2 {
  color: #ffffff;
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.footer-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-link-grid a {
  color: #bfdbfe;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.76);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 30px;
  color: #64748b;
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .header-search {
    display: none;
  }

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

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

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

  .side-ranking {
    position: static;
  }
}

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

  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero-section {
    height: 560px;
  }

  .hero-content {
    padding-bottom: 76px;
  }

  .hero-arrow {
    display: none;
  }

  .section {
    padding: 38px 0;
  }

  .section-header,
  .player-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .ranking-card {
    grid-template-columns: auto 70px minmax(0, 1fr);
  }

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

  .info-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .header-shell,
  .mobile-panel,
  .section,
  .page-hero > div,
  .detail-shell,
  .footer-shell,
  .footer-bottom,
  .hero-content {
    width: min(100% - 24px, 1180px);
  }

  .brand-text {
    font-size: 1.08rem;
  }

  .hero-section {
    height: 520px;
  }

  .hero-actions {
    width: 100%;
  }

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

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

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

  .ranking-card .rank-number {
    position: absolute;
    margin: 8px;
  }

  .ranking-card {
    position: relative;
  }

  .rank-poster {
    grid-column: 1;
  }

  .ranking-card > div {
    grid-column: 2;
  }

  .detail-info h1 {
    font-size: 2.25rem;
  }

  .player-card,
  .detail-text-block {
    padding: 18px;
    border-radius: 22px;
  }
}
