:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.82);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-dark: #0891b2;
  --green: #22c55e;
  --blue: #60a5fa;
  --pink: #f472b6;
  --amber: #fbbf24;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(2, 8, 23, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.16), transparent 26%), radial-gradient(circle at 80% 8%, rgba(59, 130, 246, 0.18), transparent 28%), linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
  color: var(--text);
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 35px rgba(2, 8, 23, 0.35);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #67e8f9, #0891b2 58%, #164e63 100%);
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.45);
  font-weight: 900;
  color: #ecfeff;
  transition: transform 0.7s ease;
}

.brand:hover .brand-mark {
  transform: rotate(180deg) scale(1.05);
}

.brand-text strong {
  display: block;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: rgba(103, 232, 249, 0.74);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: #cbd5e1;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(30, 41, 59, 0.75);
  color: #fff;
  cursor: pointer;
}

.hero-slider {
  position: relative;
  height: min(80vh, 780px);
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.78) 36%, rgba(2, 6, 23, 0.35) 100%), linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.58) 45%, rgba(2, 6, 23, 0.28) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 420px;
  align-items: center;
  gap: 44px;
  padding-top: 16px;
}

.hero-copy {
  max-width: 730px;
}

.hero-kicker,
.section-kicker,
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a5f3fc;
  background: rgba(8, 145, 178, 0.18);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}

.hero-title {
  margin: 22px 0 18px;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.hero-desc {
  max-width: 720px;
  margin: 0;
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.28);
}

.btn-ghost {
  color: #dbeafe;
  border-color: rgba(191, 219, 254, 0.24);
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(15, 23, 42, 0.82);
}

.hero-panel {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.58));
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(18px);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(37, 99, 235, 0.12));
}

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

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

.hero-panel-body {
  padding: 18px 6px 4px;
}

.hero-panel-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.hero-panel-body p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.75;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-control-buttons,
.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.hero-control {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(226, 232, 240, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: white;
  font-size: 26px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(8, 145, 178, 0.75);
  transform: translateY(-2px);
}

.hero-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.26);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 58px;
  background: var(--cyan);
}

.section {
  padding: 74px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.52), rgba(2, 6, 23, 0.45));
}

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

.section-head h2,
.page-hero h1,
.detail-title h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-head p,
.page-hero p,
.detail-title p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.68));
  box-shadow: 0 18px 48px rgba(2, 8, 23, 0.28);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 24px 72px rgba(8, 145, 178, 0.18);
}

.movie-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.18), rgba(15, 23, 42, 0.82));
}

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

.movie-card:hover .movie-cover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.movie-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent);
}

.card-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ecfeff;
  background: rgba(8, 145, 178, 0.86);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(8, 145, 178, 0.32);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.32;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 700;
}

.card-desc {
  margin: 0;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.68;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  border-radius: 999px;
  padding: 5px 9px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.13);
  font-size: 12px;
}

.card-link-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.65);
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.24);
}

.search-panel input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  outline: none;
  color: white;
  background: rgba(2, 6, 23, 0.58);
  padding: 0 16px;
}

.search-panel input:focus {
  border-color: rgba(34, 211, 238, 0.52);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

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

.category-tile,
.rank-row,
.info-box {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.58));
  box-shadow: 0 18px 48px rgba(2, 8, 23, 0.26);
}

.category-tile {
  position: relative;
  overflow: hidden;
  padding: 22px;
  min-height: 150px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.16);
}

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

.category-tile h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.category-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.page-hero {
  padding: 72px 0 42px;
  background: radial-gradient(circle at 15% 8%, rgba(34, 211, 238, 0.18), transparent 28%), linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #67e8f9;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 58px 84px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  border-color: rgba(34, 211, 238, 0.36);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #020617;
  background: linear-gradient(135deg, #67e8f9, #22c55e);
  font-weight: 900;
}

.rank-poster {
  width: 84px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.7);
}

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

.rank-info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.detail-hero {
  padding: 44px 0 28px;
}

.detail-title {
  margin-top: 16px;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
  margin: 28px 0 44px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  color: white;
  background: #020617;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  filter: blur(1px) saturate(1.04);
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.08), rgba(2, 6, 23, 0.78));
}

.play-button-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 0 0 18px rgba(34, 211, 238, 0.12), 0 24px 60px rgba(37, 99, 235, 0.34);
  font-size: 38px;
  transform: translateZ(0);
}

.player-caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
  text-align: left;
}

.player-caption strong {
  display: block;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.2;
  margin-bottom: 8px;
}

.player-caption span {
  color: #cbd5e1;
}

.movie-side {
  display: grid;
  gap: 16px;
}

.side-poster {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

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

.info-box {
  padding: 20px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  padding-bottom: 10px;
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  text-align: right;
  color: #e2e8f0;
  font-weight: 700;
}

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

.article-panel {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 48px rgba(2, 8, 23, 0.24);
  padding: clamp(22px, 4vw, 34px);
}

.article-panel h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.article-panel p {
  margin: 0 0 22px;
  color: #dbeafe;
  line-height: 1.9;
  font-size: 16px;
}

.related-compact {
  display: grid;
  gap: 12px;
}

.compact-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  background: rgba(2, 6, 23, 0.28);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.compact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.35);
}

.compact-card img {
  width: 78px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.compact-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.35;
}

.compact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.pagination-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  padding: 42px 0;
  color: var(--muted);
}

.footer-inner strong {
  color: white;
  font-size: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: var(--cyan);
}

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

.empty-state {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.62);
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .nav-links a:hover {
    background: rgba(30, 41, 59, 0.72);
  }

  .nav-links a::after {
    display: none;
  }

  .hero-slider {
    height: auto;
    min-height: 760px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    align-content: center;
    padding-top: 40px;
    padding-bottom: 110px;
  }

  .hero-panel {
    max-width: 420px;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .category-strip,
  .watch-layout,
  .detail-content,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .movie-side {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .hero-slider {
    min-height: 720px;
  }

  .hero-title {
    font-size: clamp(36px, 13vw, 54px);
  }

  .hero-actions,
  .section-head,
  .pagination-links {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-controls {
    bottom: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .category-strip,
  .footer-inner,
  .movie-side {
    grid-template-columns: 1fr;
  }

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

  .rank-row {
    grid-template-columns: 42px 72px minmax(0, 1fr);
  }

  .rank-row .btn {
    grid-column: 2 / 4;
  }

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

  .player-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .play-button-core {
    width: 76px;
    height: 76px;
    font-size: 30px;
  }
}
