:root {
  --amber-50: #fff8eb;
  --amber-100: #ffe8bf;
  --amber-200: #ffd58a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-50: #fff4ed;
  --orange-100: #ffdfc7;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-950: #431407;
  --ink: #2d1605;
  --text: #63330b;
  --paper: #ffffff;
  --shadow: 0 18px 50px rgba(120, 53, 15, 0.18);
  --soft-shadow: 0 12px 32px rgba(120, 53, 15, 0.12);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--amber-50), var(--orange-50) 48%, var(--amber-50));
  color: var(--ink);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, var(--amber-100), var(--orange-100));
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 119, 6, 0.22);
  background: linear-gradient(90deg, rgba(255, 248, 235, 0.94), rgba(255, 244, 237, 0.94));
  box-shadow: 0 8px 24px rgba(120, 53, 15, 0.12);
  backdrop-filter: blur(16px);
}

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

.nav-shell {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-700));
  color: white;
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.35);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 21px;
  line-height: 1;
  color: var(--amber-800);
}

.brand-copy small {
  color: var(--amber-600);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links > a,
.nav-more > button {
  border: 0;
  border-radius: 12px;
  padding: 10px 15px;
  background: transparent;
  color: var(--amber-900);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links > a:hover,
.nav-links > a.is-active,
.nav-more:hover > button {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-700);
  transform: translateY(-1px);
}

.nav-more {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 180px;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 18px;
  background: white;
  box-shadow: var(--soft-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.2s ease;
}

.nav-more:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  border-radius: 12px;
  padding: 9px 12px;
  color: var(--amber-900);
}

.nav-dropdown a:hover {
  background: var(--amber-50);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  background: rgba(245, 158, 11, 0.14);
  color: var(--amber-900);
}

.hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--ink);
}

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

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

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 74px;
  width: min(760px, calc(100% - 48px));
  color: white;
}

.hero-label {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 16px;
  background: var(--amber-600);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(217, 119, 6, 0.3);
}

.hero-content h1,
.hero-content h2 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-content .hero-movie-title {
  margin-top: -4px;
  font-size: clamp(27px, 4vw, 44px);
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 28px;
  color: #ffedd5;
  font-size: clamp(16px, 2vw, 21px);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--amber-600), var(--orange-700));
  color: white;
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.34);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px) scale(1.02);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(10px);
}

.primary-button.full {
  width: 100%;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: white;
  font-size: 34px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.24s ease, background 0.24s ease;
  backdrop-filter: blur(8px);
}

.hero-slider:hover .hero-control {
  opacity: 1;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.58);
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.24s ease, background 0.24s ease;
}

.hero-dots button.is-active {
  width: 36px;
  background: var(--amber-500);
}

.search-strip {
  padding: 34px 0 6px;
}

.search-panel,
.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.search-panel {
  padding: 22px;
}

.search-panel h2,
.search-panel p {
  margin: 0;
}

.search-panel h2 {
  color: var(--amber-900);
  font-size: 24px;
}

.search-panel p {
  color: var(--text);
}

.search-form,
.search-page-form {
  display: flex;
  width: min(520px, 100%);
  gap: 12px;
}

.search-form input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  min-height: 48px;
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 16px;
  padding: 0 16px;
  background: white;
  color: var(--amber-900);
  outline: none;
}

.search-form input,
.search-page-form input,
.filter-panel input {
  flex: 1;
}

.search-form input:focus,
.search-page-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber-600);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.search-form button,
.search-page-form button {
  border: 0;
  border-radius: 16px;
  padding: 0 22px;
  background: var(--amber-700);
  color: white;
  font-weight: 800;
}

.content-section {
  padding: 58px 0;
}

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

.section-heading h2 {
  margin: 0 0 8px;
  color: var(--amber-900);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.section-heading span {
  display: block;
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
}

.section-heading a {
  color: var(--amber-700);
  font-weight: 800;
}

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

.movie-card {
  border-radius: 22px;
  background: white;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.movie-card figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
}

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

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

.card-year,
.card-play {
  position: absolute;
  border-radius: 999px;
  color: white;
}

.card-year {
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: var(--amber-600);
  font-size: 12px;
  font-weight: 800;
}

.card-play {
  left: 50%;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(6px);
}

.movie-card:hover .card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-body {
  padding: 18px;
}

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

.card-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--amber-600);
  font-size: 12px;
  font-weight: 700;
}

.card-meta span {
  border-radius: 999px;
  padding: 3px 9px;
  background: var(--amber-50);
}

.category-band {
  border-radius: 32px;
  padding: 44px;
  background: linear-gradient(135deg, rgba(255, 232, 191, 0.75), rgba(255, 223, 199, 0.78));
  box-shadow: var(--soft-shadow);
}

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

.category-pill {
  display: grid;
  gap: 8px;
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(120, 53, 15, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-pill:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-pill strong {
  color: var(--amber-900);
  font-size: 20px;
}

.category-pill span {
  color: var(--text);
  font-size: 14px;
}

.horizontal-row {
  display: grid;
  grid-auto-columns: minmax(250px, 1fr);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.slim-card {
  min-width: 250px;
  scroll-snap-align: start;
}

.ranking-section {
  border-radius: 34px;
  padding: 46px;
  background: white;
  box-shadow: var(--soft-shadow);
}

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

.compact-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--amber-50);
  transition: transform 0.2s ease, background 0.2s ease;
}

.compact-card:hover {
  background: var(--orange-50);
  transform: translateY(-3px);
}

.compact-card a {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  min-height: 104px;
  padding: 12px;
}

.compact-card img {
  width: 96px;
  height: 80px;
  border-radius: 14px;
  object-fit: cover;
}

.rank-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--amber-700);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.compact-card h3 {
  display: -webkit-box;
  margin: 0 0 4px;
  overflow: hidden;
  color: var(--amber-900);
  font-size: 15px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.compact-card p {
  display: -webkit-box;
  margin: 0 0 4px;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.compact-card span:last-child {
  color: var(--amber-600);
  font-size: 12px;
}

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

.spotlight-card figure {
  aspect-ratio: 16 / 9;
}

.page-hero {
  background: linear-gradient(120deg, var(--amber-700), var(--orange-700));
  color: white;
  padding: 66px 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 16px;
  color: #ffedd5;
  font-weight: 800;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: #ffedd5;
  font-size: 18px;
}

.category-card {
  overflow: hidden;
  border-radius: 26px;
  background: white;
  box-shadow: var(--soft-shadow);
  transition: 0.22s ease;
}

.category-cover-stack {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 4px;
  height: 170px;
  background: var(--amber-100);
}

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

.category-card-body {
  padding: 22px;
}

.category-card-body h2 {
  margin: 0 0 8px;
  color: var(--amber-900);
}

.category-card-body p {
  min-height: 66px;
  margin: 0 0 14px;
  color: var(--text);
}

.category-card-body span {
  color: var(--amber-700);
  font-weight: 900;
}

.filter-panel {
  margin-bottom: 26px;
  padding: 16px;
}

.filter-panel select {
  width: 180px;
}

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

.ranking-row {
  border-radius: 24px;
  background: white;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.ranking-row a {
  display: grid;
  grid-template-columns: 78px 190px 1fr;
  align-items: center;
  gap: 20px;
  padding: 16px;
}

.big-rank {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-700));
  color: white;
  font-size: 24px;
  font-weight: 900;
}

.ranking-row img {
  width: 190px;
  height: 108px;
  border-radius: 18px;
  object-fit: cover;
}

.ranking-row h2 {
  margin: 0 0 6px;
  color: var(--amber-900);
}

.ranking-row p {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--text);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ranking-row span:last-child {
  color: var(--amber-600);
  font-weight: 800;
}

.detail-main {
  padding: 34px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--amber-700);
  font-weight: 800;
}

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

.player-card,
.detail-aside section {
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: black;
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 0;
  background: rgba(0, 0, 0, 0.22);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-start span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.92);
  color: white;
  font-size: 36px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
  transform: translateX(3px);
}

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

.detail-content {
  padding: clamp(22px, 4vw, 38px);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span,
.tag-list span {
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--amber-100);
  color: var(--amber-800);
  font-size: 13px;
  font-weight: 800;
}

.detail-content h1 {
  margin: 0 0 16px;
  color: var(--amber-900);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
}

.lead-text {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 19px;
}

.story-box,
.review-box {
  border-radius: 22px;
  padding: 24px;
  margin: 0 0 22px;
}

.story-box {
  background: linear-gradient(135deg, var(--amber-50), var(--orange-50));
}

.review-box {
  border: 2px solid var(--amber-200);
  background: white;
}

.story-box h2,
.review-box h2,
.detail-aside h2 {
  margin: 0 0 12px;
  color: var(--amber-900);
}

.story-box p,
.review-box p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-aside {
  display: grid;
  gap: 24px;
}

.poster-panel {
  padding: 18px;
}

.poster-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  object-fit: cover;
}

.poster-panel h2 {
  margin: 18px 0 6px;
}

.poster-panel p {
  color: var(--text);
}

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

.related-section {
  padding-bottom: 0;
}

.site-footer {
  margin-top: 40px;
  background: linear-gradient(180deg, var(--amber-900), var(--orange-950));
  color: #ffedd5;
}

.footer-shell {
  padding: 48px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: white;
  font-size: 18px;
}

.footer-grid p {
  margin: 0;
  color: #fed7aa;
}

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

.footer-links a {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffedd5;
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 237, 213, 0.16);
  padding-top: 22px;
  color: #fdba74;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

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

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

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(217, 119, 6, 0.18);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .nav-more {
    display: none;
  }

  .hero-slider {
    height: 540px;
  }

  .search-panel,
  .filter-panel,
  .section-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .search-form,
  .search-page-form {
    width: 100%;
  }

  .movie-grid,
  .category-pill-grid,
  .category-grid,
  .spotlight-grid,
  .ranking-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-band,
  .ranking-section {
    padding: 28px;
  }

  .ranking-row a {
    grid-template-columns: 58px 120px 1fr;
  }

  .ranking-row img {
    width: 120px;
    height: 86px;
  }
}

@media (max-width: 580px) {
  .nav-shell,
  .section-shell,
  .footer-shell {
    width: min(100% - 22px, 1180px);
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .hero-slider {
    height: 510px;
  }

  .hero-content {
    bottom: 64px;
  }

  .hero-control {
    display: none;
  }

  .hero-actions,
  .search-form,
  .search-page-form {
    flex-direction: column;
  }

  .movie-grid,
  .category-pill-grid,
  .category-grid,
  .spotlight-grid,
  .ranking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-band,
  .ranking-section {
    border-radius: 24px;
    padding: 22px;
  }

  .ranking-row a {
    grid-template-columns: 48px 90px 1fr;
    gap: 12px;
  }

  .ranking-row img {
    width: 90px;
    height: 70px;
    border-radius: 14px;
  }

  .big-rank {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 18px;
  }

  .player-start span {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}
