:root {
  color-scheme: dark;
  --dark-950: #030508;
  --dark-900: #07090c;
  --dark-850: #0c1016;
  --dark-800: #12171e;
  --dark-750: #171d26;
  --dark-700: #1d2530;
  --dark-600: #2c3746;
  --primary-600: #0043ad;
  --primary-500: #0056e0;
  --primary-400: #2879ff;
  --accent-500: #e6a800;
  --accent-400: #ffc61a;
  --text: #ffffff;
  --muted: #9aa4b2;
  --soft: #d4dae4;
  --line: rgba(255, 255, 255, 0.08);
  --panel: rgba(18, 23, 30, 0.74);
  --panel-solid: #12171e;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 86, 224, 0.18), transparent 30vw),
    radial-gradient(circle at 85% 8%, rgba(230, 168, 0, 0.14), transparent 28vw),
    linear-gradient(180deg, var(--dark-900), var(--dark-800) 42%, var(--dark-900));
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 12, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1280px, calc(100% - 32px));
  height: 66px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  box-shadow: 0 12px 30px rgba(0, 86, 224, 0.35);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

.brand-name {
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-name span {
  color: var(--accent-400);
}

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

.nav-link {
  color: #c7ced9;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-400);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(320px, 28vw);
}

.header-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  color: #ffffff;
  background: rgba(29, 37, 48, 0.72);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  height: 40px;
  padding: 0 16px;
}

.header-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(255, 198, 26, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 198, 26, 0.12);
}

.header-search button {
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #0a0b0e;
  background: var(--accent-400);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(29, 37, 48, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #ffffff;
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--dark-800);
}

.mobile-nav.open {
  display: grid;
  gap: 6px;
}

.mobile-nav .nav-link {
  padding: 12px 14px;
  border-radius: 12px;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  background: var(--dark-700);
}

.home-main {
  min-height: 100vh;
}

.page-main,
.detail-main {
  min-height: 100vh;
  padding-top: 66px;
}

.hero {
  position: relative;
  min-height: 700px;
  height: 72vh;
  overflow: hidden;
  background: var(--dark-900);
}

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

.hero-slide {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--dark-900) 0%, rgba(7, 9, 12, 0.66) 44%, rgba(7, 9, 12, 0.18) 100%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.92), rgba(7, 9, 12, 0.42) 48%, rgba(7, 9, 12, 0.18));
}

.hero-content {
  position: absolute;
  right: 0;
  bottom: 94px;
  left: 0;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 1280px;
}

.hero-content h1 {
  max-width: 850px;
  margin: 18px 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 30px;
  color: #dbe2ed;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #cdd5e1;
  background: rgba(29, 37, 48, 0.76);
  backdrop-filter: blur(12px);
}

.hero-tags .hero-category {
  color: #101216;
  background: var(--accent-400);
  font-weight: 800;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--primary-600), var(--primary-400));
  box-shadow: 0 18px 40px rgba(0, 86, 224, 0.28);
}

.btn.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(29, 37, 48, 0.72);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 32px;
  transform: translateY(-50%);
}

.hero-arrow.prev {
  left: 22px;
}

.hero-arrow.next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 34px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

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

.hero-dot.active {
  background: var(--accent-400);
}

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

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

.section-heading.single {
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-400);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.page-hero h1,
.detail-info h1,
.prose-card h2 {
  margin: 0;
  color: #ffffff;
  line-height: 1.15;
}

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

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(18, 23, 30, 0.72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 198, 26, 0.32);
  background: rgba(29, 37, 48, 0.82);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-800), var(--dark-700));
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 50%);
}

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #111318;
  background: var(--accent-400);
  font-size: 12px;
  font-weight: 900;
}

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 86, 224, 0.82);
  backdrop-filter: blur(8px);
}

.card-content {
  padding: 16px;
}

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

.card-content h3 a:hover {
  color: var(--accent-400);
}

.card-meta,
.card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.card-desc {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  min-height: 24px;
  padding: 3px 9px;
  color: #adb7c6;
  font-size: 12px;
}

.tag-row.large span {
  min-height: 30px;
  color: #d4dbea;
}

.movie-card.compact .card-desc {
  -webkit-line-clamp: 1;
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

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

.category-tile {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(7, 9, 12, 0.88), rgba(7, 9, 12, 0.28)),
    var(--tile-bg) center / cover;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 198, 26, 0.45);
}

.category-tile span,
.category-tile strong {
  position: relative;
  z-index: 1;
  display: block;
}

.category-tile span {
  font-size: 20px;
  font-weight: 900;
}

.category-tile strong {
  margin-top: 8px;
  color: var(--accent-400);
  font-size: 36px;
}

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

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

.horizontal-card {
  display: grid;
  grid-template-columns: auto 130px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(18, 23, 30, 0.72);
  transition: transform 0.25s ease, background 0.25s ease;
}

.horizontal-card:hover {
  transform: translateX(6px);
  background: rgba(29, 37, 48, 0.86);
}

.rank-number {
  color: var(--accent-400);
  font-size: 26px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.horizontal-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: var(--dark-700);
}

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

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

.horizontal-info h3 a:hover {
  color: var(--accent-400);
}

.horizontal-info p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.horizontal-info p + p {
  margin-top: 5px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.96), rgba(7, 9, 12, 0.72), rgba(7, 9, 12, 0.35)),
    var(--page-bg) center / cover;
}

.page-hero::after,
.detail-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  content: "";
  background: linear-gradient(0deg, var(--dark-900), transparent);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 70px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(36px, 6vw, 62px);
  letter-spacing: -0.04em;
}

.page-hero p:not(.eyebrow) {
  max-width: 800px;
  color: #dbe2ed;
  font-size: 18px;
}

.page-hero-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--accent-400);
  background: rgba(29, 37, 48, 0.72);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 2fr;
  gap: 16px;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(18, 23, 30, 0.72);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-panel input,
.filter-panel select {
  height: 46px;
  padding: 0 16px;
}

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

.filter-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border-radius: 16px;
  color: var(--accent-400);
  background: rgba(230, 168, 0, 0.08);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 38px;
}

.pagination a,
.pagination span {
  display: inline-grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #d7deea;
  background: rgba(18, 23, 30, 0.75);
}

.pagination a.active,
.pagination a:hover {
  color: #111318;
  background: var(--accent-400);
}

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

.category-card-large {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(18, 23, 30, 0.72);
}

.category-card-large > a {
  display: block;
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(0deg, rgba(7, 9, 12, 0.92), rgba(7, 9, 12, 0.18)),
    var(--category-bg) center / cover;
}

.category-card-large p {
  margin: 0 0 8px;
  color: var(--accent-400);
  font-weight: 900;
}

.category-card-large h2 {
  margin: 0;
  font-size: 36px;
}

.category-card-large ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 20px 24px 24px;
  list-style: none;
}

.category-card-large li a {
  color: #cbd4df;
}

.category-card-large li a:hover {
  color: var(--accent-400);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.96) 0%, rgba(7, 9, 12, 0.84) 44%, rgba(7, 9, 12, 0.38) 100%),
    var(--detail-bg) center / cover;
}

.detail-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 42px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0 82px;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: var(--dark-800);
  box-shadow: var(--shadow);
}

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

.detail-info {
  align-self: center;
}

.detail-info h1 {
  max-width: 880px;
  font-size: clamp(38px, 6vw, 70px);
  letter-spacing: -0.05em;
}

.detail-meta {
  margin: 18px 0 0;
  color: #d2dae6;
  font-size: 17px;
}

.detail-line {
  max-width: 880px;
  margin: 22px 0;
  color: #eef3fb;
  font-size: 20px;
}

.player-section,
.detail-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 0;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow);
}

.video-shell video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.58));
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.player-start span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 999px;
  color: #111318;
  background: var(--accent-400);
  font-size: 34px;
  box-shadow: 0 20px 45px rgba(230, 168, 0, 0.24);
}

.player-start strong {
  display: block;
  font-size: 18px;
}

.video-shell.is-playing .player-start {
  opacity: 0;
  pointer-events: none;
}

.player-status {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  margin: 0;
  color: #dbe2ed;
  text-align: center;
  pointer-events: none;
}

.video-shell.is-playing .player-status {
  display: none;
}

.detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 20px;
}

.prose-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(18, 23, 30, 0.72);
}

.prose-card h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.prose-card p {
  margin: 0;
  color: #cbd3df;
  font-size: 16px;
}

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

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 12, 0.82);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.footer-brand p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
}

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

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

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

.footer-copy {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #687487;
  text-align: center;
}

[hidden] {
  display: none !important;
}

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

  .menu-toggle {
    display: block;
  }

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

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

  .compact-ranking {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 640px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content {
    bottom: 74px;
  }

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

  .filter-panel,
  .footer-inner,
  .detail-inner,
  .detail-content,
  .category-grid-large {
    grid-template-columns: 1fr;
  }

  .detail-inner {
    gap: 26px;
  }

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

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

@media (max-width: 640px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-name {
    font-size: 18px;
  }

  .hero-content,
  .content-section,
  .page-hero-inner,
  .detail-inner,
  .player-section,
  .detail-content,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: 590px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

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

  .card-content {
    padding: 12px;
  }

  .card-content h3 {
    font-size: 16px;
  }

  .card-desc,
  .tag-row {
    display: none;
  }

  .horizontal-card {
    grid-template-columns: auto 92px minmax(0, 1fr);
    gap: 12px;
  }

  .rank-number {
    font-size: 20px;
  }

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

  .detail-info h1 {
    font-size: 36px;
  }

  .detail-line {
    font-size: 17px;
  }

  .player-start span {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

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