:root {
  --fog-50: #f0f4f8;
  --fog-100: #d9e2ec;
  --fog-200: #bcccdc;
  --fog-300: #9fb3c8;
  --fog-400: #829ab1;
  --fog-500: #627d98;
  --fog-600: #486581;
  --fog-700: #334e68;
  --fog-800: #243b53;
  --fog-900: #102a43;
  --mist-50: #f7fbff;
  --mist-100: #eef6fb;
  --cyan-100: #bef8fd;
  --cyan-400: #38bec9;
  --cyan-500: #2cb1bc;
  --cyan-600: #14919b;
  --cyan-700: #0e7c86;
  --white: #ffffff;
  --black: #05070a;
  --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 12px 30px rgba(16, 42, 67, 0.16);
  --shadow-strong: 0 24px 60px rgba(16, 42, 67, 0.22);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--fog-800);
  background: var(--mist-50);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 68px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--fog-900);
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-500), var(--fog-700));
  box-shadow: 0 10px 30px rgba(44, 177, 188, 0.28);
  font-size: 14px;
}

.brand-text {
  white-space: nowrap;
  font-size: 20px;
}

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

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 9px 14px;
  color: var(--fog-700);
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(320px, 28vw);
  padding: 6px;
  border: 1px solid var(--fog-100);
  border-radius: 999px;
  background: var(--white);
}

.header-search input,
.hero-search input,
.filter-card input,
.filter-card select {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--fog-800);
  background: transparent;
}

.header-search input {
  width: 100%;
  padding: 7px 10px;
}

.header-search button,
.hero-search button,
.primary-button,
.rank-play {
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--cyan-500);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button {
  padding: 7px 13px;
  white-space: nowrap;
}

.header-search button:hover,
.hero-search button:hover,
.primary-button:hover,
.rank-play:hover {
  background: var(--cyan-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--fog-50);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--fog-800);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--fog-100);
  background: var(--white);
}

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

.mobile-links,
.mobile-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.mobile-cats a,
.hero-categories a,
.tag-row span,
.hero-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--fog-700);
  background: rgba(255, 255, 255, 0.8);
}

.mobile-cats a {
  padding: 6px 10px;
  border: 1px solid var(--fog-100);
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  color: var(--white);
  background: var(--fog-900);
}

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

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 1s ease;
}

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

.hero-shade {
  background:
    radial-gradient(circle at 20% 20%, rgba(44, 177, 188, 0.36), transparent 34%),
    linear-gradient(90deg, rgba(16, 42, 67, 0.92), rgba(16, 42, 67, 0.62), rgba(16, 42, 67, 0.22)),
    linear-gradient(0deg, rgba(16, 42, 67, 0.96), rgba(16, 42, 67, 0.1) 48%, rgba(16, 42, 67, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 76vh;
  padding-top: 110px;
  padding-bottom: 190px;
}

.hero-copy {
  max-width: 720px;
  animation: fadeUp 0.8s ease both;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--white);
  background: var(--cyan-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-meta span + span::before {
  content: "•";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.5);
}

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

.hero-tags {
  margin-top: 18px;
}

.hero-tags span {
  padding: 5px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-size: 13px;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 800;
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

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

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

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

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

.hero-dot.active {
  width: 34px;
  background: var(--white);
}

.hero-search-wrap {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  z-index: 5;
}

.hero-search {
  display: flex;
  gap: 10px;
  max-width: 720px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.hero-search input {
  flex: 1;
  padding: 12px 16px;
  font-size: 16px;
}

.hero-search button {
  padding: 0 22px;
  font-weight: 800;
}

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

.hero-categories a {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(16, 42, 67, 0.44);
  backdrop-filter: blur(10px);
  font-size: 13px;
}

.section-block {
  padding: 62px 0;
}

.section-block.alt {
  background: var(--white);
}

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

.section-heading h2 {
  margin: 0;
  color: var(--fog-900);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--fog-500);
}

.section-heading a {
  flex: 0 0 auto;
  color: var(--cyan-700);
  font-weight: 800;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(188, 204, 220, 0.65);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 177, 188, 0.45);
  box-shadow: var(--shadow-strong);
}

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

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

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

.poster-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0);
  font-size: 46px;
  opacity: 0;
  transition: background 0.25s ease, opacity 0.25s ease;
}

.movie-card:hover .poster-mask {
  background: rgba(0, 0, 0, 0.35);
  opacity: 1;
}

.year-badge,
.rank-badge,
.detail-rank {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.66);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.rank-badge {
  right: auto;
  left: 10px;
  background: var(--cyan-600);
}

.card-body {
  padding: 14px;
}

.card-body h3 {
  min-height: 44px;
  margin: 0 0 8px;
  color: var(--fog-900);
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.card-body h3 a:hover,
.rank-info h3 a:hover {
  color: var(--cyan-700);
}

.card-body p {
  min-height: 42px;
  margin: 0;
  color: var(--fog-500);
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.card-meta,
.rank-meta,
.detail-meta,
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--fog-500);
  font-size: 13px;
}

.card-meta {
  margin-top: 10px;
}

.card-meta span,
.rank-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 8px;
  background: var(--fog-50);
}

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

.tag-row span {
  padding: 3px 8px;
  color: var(--cyan-700);
  background: var(--cyan-100);
  font-size: 12px;
}

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

.category-tile {
  min-height: 170px;
  padding: 22px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(190, 248, 253, 0.32), transparent 34%),
    linear-gradient(135deg, var(--fog-800), var(--fog-900));
  box-shadow: var(--shadow-medium);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.category-tile strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.category-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.category-tile span {
  display: inline-block;
  margin-top: 18px;
  color: var(--cyan-100);
  font-weight: 800;
}

.page-hero {
  padding: 78px 0 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(44, 177, 188, 0.42), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(130, 154, 177, 0.32), transparent 28%),
    linear-gradient(135deg, var(--fog-900), var(--fog-800));
}

.page-hero h1 {
  max-width: 900px;
}

.filter-panel {
  position: relative;
  z-index: 10;
  margin-top: -30px;
}

.filter-card {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr auto;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(188, 204, 220, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(12px);
}

.filter-card input,
.filter-card select {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 14px;
  background: var(--fog-50);
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 44px;
  border-radius: 14px;
  color: var(--cyan-700);
  background: var(--cyan-100);
  font-weight: 800;
  white-space: nowrap;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 84px 58px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 16px 12px 12px;
}

.rank-cover {
  overflow: hidden;
  width: 84px;
  border-radius: 14px;
  aspect-ratio: 3 / 4;
  background: var(--fog-100);
}

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

.rank-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-500), var(--fog-700));
  font-weight: 900;
}

.rank-info h3 {
  margin: 0 0 5px;
  color: var(--fog-900);
  font-size: 19px;
}

.rank-info p {
  margin: 0 0 8px;
  color: var(--fog-500);
}

.rank-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 40px;
  padding: 0 18px;
  font-weight: 800;
}

.detail-hero {
  padding: 42px 0 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 0%, rgba(44, 177, 188, 0.3), transparent 32%),
    linear-gradient(135deg, var(--fog-900), var(--fog-800));
}

.breadcrumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb a:hover {
  color: var(--cyan-100);
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: start;
}

.detail-cover {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 3 / 4;
  background: var(--fog-700);
  box-shadow: var(--shadow-strong);
}

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

.detail-rank {
  top: 14px;
  right: 14px;
  background: var(--cyan-600);
}

.detail-copy h1 {
  margin: 4px 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
}

.detail-copy .summary-line {
  max-width: 820px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.detail-meta span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.player-section {
  padding: 54px 0 26px;
}

.player-shell {
  overflow: hidden;
  border-radius: 28px;
  background: var(--black);
  box-shadow: var(--shadow-strong);
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  background: var(--black);
  outline: 0;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: rgba(5, 7, 10, 0.34);
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-start span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(44, 177, 188, 0.92);
  box-shadow: 0 20px 60px rgba(44, 177, 188, 0.38);
  font-size: 36px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 34px 0 64px;
}

.article-card,
.side-card {
  border: 1px solid rgba(188, 204, 220, 0.72);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.article-card {
  padding: 28px;
}

.article-card h2,
.side-card h2 {
  margin: 0 0 16px;
  color: var(--fog-900);
  font-size: 24px;
}

.article-card p {
  margin: 0 0 20px;
  color: var(--fog-700);
  font-size: 16px;
}

.side-card {
  padding: 18px;
}

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

.side-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
}

.side-item img {
  width: 64px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
  background: var(--fog-100);
}

.side-item strong {
  display: block;
  color: var(--fog-900);
  font-size: 14px;
}

.side-item span {
  color: var(--fog-500);
  font-size: 12px;
}

.empty-state {
  display: none;
  padding: 32px;
  border-radius: 24px;
  color: var(--fog-600);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.site-footer {
  color: var(--fog-100);
  background: var(--fog-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
  color: var(--fog-300);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

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

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--fog-400);
  font-size: 14px;
  text-align: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    min-height: 82vh;
    padding-bottom: 230px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-search {
    flex-direction: column;
    border-radius: 22px;
  }

  .hero-search button {
    min-height: 44px;
  }

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

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

  .filter-count {
    grid-column: 1 / -1;
  }

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

  .rank-cover {
    width: 70px;
  }

  .rank-play {
    grid-column: 3;
    justify-self: start;
  }

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

  .detail-cover {
    max-width: 320px;
  }
}

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

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

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

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

  .hero-dots {
    bottom: 170px;
  }

  .section-heading {
    display: block;
  }

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

  .card-body {
    padding: 11px;
  }

  .card-body h3 {
    min-height: 40px;
    font-size: 14px;
  }

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

  .rank-item {
    grid-template-columns: 62px 1fr;
    gap: 12px;
  }

  .rank-cover {
    width: 62px;
  }

  .rank-number {
    position: absolute;
    margin-left: 42px;
    margin-top: -52px;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .rank-info,
  .rank-play {
    grid-column: 2;
  }

  .article-card {
    padding: 20px;
  }

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