:root {
  --peach-50: #fff5f0;
  --peach-100: #ffe9dd;
  --peach-200: #ffd3bb;
  --peach-400: #ffa777;
  --peach-500: #ff9155;
  --peach-600: #f27636;
  --coral-50: #fff0ee;
  --coral-400: #ff7b68;
  --coral-500: #ff6450;
  --ink: #171313;
  --muted: #6b625f;
  --line: rgba(255, 145, 85, 0.18);
  --card: #ffffff;
  --shadow: 0 14px 45px rgba(255, 145, 85, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--peach-50) 48%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 22px rgba(255, 145, 85, 0.08);
}

.nav-shell {
  max-width: 1200px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--peach-400), var(--coral-500));
  box-shadow: 0 10px 24px rgba(255, 100, 80, 0.28);
}

.brand-text,
.footer-brand span:last-child,
.gradient-text {
  color: transparent;
  background: linear-gradient(120deg, var(--peach-600), var(--coral-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #3c3431;
  font-weight: 650;
}

.nav-panel > a {
  transition: color 0.2s ease;
}

.nav-panel > a:hover {
  color: var(--peach-600);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--peach-200);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
}

.nav-search input,
.page-search input,
.filter-bar input,
.filter-bar select {
  border: 0;
  outline: 0;
  min-width: 0;
  color: var(--ink);
  background: #ffffff;
}

.nav-search input {
  width: 190px;
  padding: 10px 10px 10px 16px;
  border-radius: 999px;
  background: transparent;
}

.nav-search button,
.page-search button,
.filter-bar button {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
  box-shadow: 0 10px 20px rgba(255, 100, 80, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--peach-100);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  min-height: 72vh;
  margin: 0 auto;
  padding: 86px 24px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.hero-kicker,
.meta-row,
.detail-stats,
.hero-tags,
.card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-kicker span,
.hero-tags span {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.88rem;
  font-weight: 750;
  color: #ffffff;
  background: rgba(255, 145, 85, 0.86);
  backdrop-filter: blur(12px);
}

.hero-kicker span + span {
  background: rgba(255, 255, 255, 0.16);
}

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 650px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.8;
}

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
  box-shadow: 0 16px 35px rgba(255, 100, 80, 0.34);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.btn-primary:hover,
.btn-ghost:hover,
.movie-card:hover,
.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
}

.hero-actions span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dots button.is-active {
  width: 34px;
  background: #ffffff;
}

.search-strip,
.quick-cats,
.content-section,
.footer-grid,
.footer-bottom,
.page-hero,
.detail-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.search-strip {
  margin-top: -48px;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 24px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-strip h2,
.section-head h2,
.page-hero h1 {
  margin: 0;
  letter-spacing: -0.04em;
}

.search-strip p,
.section-head p,
.page-hero p {
  color: var(--muted);
  line-height: 1.75;
}

.search-strip form,
.page-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--peach-200);
  border-radius: 999px;
  background: #ffffff;
}

.search-strip input,
.page-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 18px;
  border-radius: 999px;
}

.quick-cats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding-top: 28px;
  padding-bottom: 10px;
}

.quick-cats a,
.category-card,
.category-overview-card,
.movie-card,
.text-panel,
.info-panel,
.rank-aside {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-cats a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-cats a:hover {
  transform: translateY(-3px);
}

.quick-cats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.content-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.peach-section,
.coral-section {
  max-width: none;
}

.peach-section > *,
.coral-section > *,
.white-section > *,
.player-section > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.peach-section {
  background: linear-gradient(180deg, #ffffff, var(--peach-50));
}

.coral-section {
  background: linear-gradient(180deg, var(--peach-50), var(--coral-50));
}

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

.section-kicker {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--peach-600);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-link {
  color: var(--peach-600);
  font-weight: 900;
  white-space: nowrap;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  box-shadow: 0 24px 55px rgba(255, 100, 80, 0.24);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #2a201d;
}

.movie-card:not(.movie-card-wide) .poster-link {
  aspect-ratio: 2 / 3;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.64));
  opacity: 0.82;
}

.play-chip,
.duration-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
}

.play-chip {
  left: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.duration-chip {
  right: 12px;
  bottom: 16px;
  padding: 7px 10px;
  font-size: 0.78rem;
}

.rank-badge {
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
}

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

.meta-row {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.movie-card h2 {
  margin: 0 0 9px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.movie-card h2 a:hover {
  color: var(--peach-600);
}

.movie-card p {
  min-height: 3.1em;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.card-foot {
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.score {
  color: #f0a400;
  font-weight: 900;
}

.movie-card-wide {
  display: grid;
  grid-template-columns: 42% 1fr;
}

.movie-card-wide .poster-link {
  min-height: 220px;
}

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

.category-card,
.category-overview-card {
  display: flex;
  min-height: 190px;
  padding: 22px;
  border-radius: 24px;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card span,
.category-overview-card span {
  color: var(--peach-600);
  font-weight: 900;
}

.category-card h2,
.category-overview-card h2 {
  margin: 12px 0 8px;
  font-size: 1.35rem;
}

.category-card p,
.category-overview-card p {
  color: var(--muted);
  line-height: 1.7;
}

.category-overview-card strong {
  color: var(--peach-600);
}

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

.compact-card {
  display: grid;
  grid-template-columns: 74px 34px 1fr;
  grid-template-areas: "img rank title" "img rank genre";
  gap: 4px 14px;
  align-items: center;
  min-height: 88px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, background 0.2s ease;
}

.compact-card:hover {
  transform: translateX(4px);
  background: #ffffff;
}

.compact-card img {
  grid-area: img;
  width: 74px;
  height: 68px;
  border-radius: 14px;
  object-fit: cover;
}

.compact-card span {
  grid-area: rank;
}

.compact-card b {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
}

.compact-card strong {
  grid-area: title;
  align-self: end;
}

.compact-card em {
  grid-area: genre;
  color: var(--muted);
  font-style: normal;
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, var(--peach-50), var(--coral-50));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-top: 54px;
  padding-bottom: 36px;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--muted);
  line-height: 1.75;
}

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

.site-footer a:hover {
  color: var(--peach-600);
}

.footer-bottom {
  padding-top: 20px;
  padding-bottom: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  padding-top: 76px;
  padding-bottom: 52px;
}

.page-hero span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--peach-600);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.1rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.filter-bar input,
.filter-bar select {
  min-height: 46px;
  border: 1px solid var(--peach-200);
  border-radius: 999px;
  padding: 0 16px;
}

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

.no-results {
  padding: 32px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--peach-200);
  border-radius: 20px;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.category-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--peach-600);
  font-weight: 800;
  background: var(--peach-100);
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}

.rank-aside {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 20px;
  border-radius: 22px;
}

.rank-aside h2 {
  margin-top: 0;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.05);
  transform: scale(1.04);
}

.detail-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  min-height: 650px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.detail-info h1 {
  max-width: 840px;
  margin: 18px 0;
  font-size: clamp(2.3rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.detail-info p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.85;
}

.detail-stats {
  margin-top: 24px;
}

.detail-stats span {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.player-section {
  background: linear-gradient(180deg, var(--ink), #241714);
  color: #ffffff;
}

.player-section .section-head p,
.player-section .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background: #080606;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(255, 145, 85, 0.22), rgba(0, 0, 0, 0.55));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-button {
  width: 90px;
  height: 90px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  font-size: 2.3rem;
  text-indent: 6px;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
  box-shadow: 0 22px 46px rgba(255, 100, 80, 0.34);
}

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

.text-panel,
.info-panel {
  padding: 28px;
  border-radius: 24px;
}

.text-panel h2,
.info-panel h2 {
  margin: 0 0 16px;
  font-size: 1.5rem;
}

.text-panel p {
  margin: 0 0 26px;
  color: #3f3834;
  line-height: 2;
  font-size: 1.04rem;
}

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

.info-panel div {
  display: grid;
}

.info-panel dt {
  color: var(--muted);
  font-size: 0.9rem;
}

.info-panel dd {
  margin: 0;
  font-weight: 800;
}

.search-page .page-search {
  max-width: 680px;
  margin-top: 28px;
}

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

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

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

  .rank-aside {
    position: static;
  }
}

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

  .nav-panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-search,
  .nav-search input {
    width: 100%;
  }

  .hero-content {
    min-height: 68vh;
    padding-top: 70px;
    padding-bottom: 94px;
  }

  .hero-arrow {
    display: none;
  }

  .search-strip,
  .wide-grid,
  .detail-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .search-strip {
    margin-top: 0;
    border-radius: 0;
  }

  .quick-cats,
  .movie-grid,
  .featured-grid,
  .category-grid,
  .category-overview-grid,
  .ranking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-shell {
    min-height: 0;
    gap: 28px;
  }

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

@media (max-width: 560px) {
  .nav-shell,
  .search-strip,
  .quick-cats,
  .content-section,
  .footer-grid,
  .footer-bottom,
  .page-hero,
  .detail-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quick-cats,
  .movie-grid,
  .featured-grid,
  .category-grid,
  .category-overview-grid,
  .ranking-list {
    grid-template-columns: 1fr;
  }

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

  .search-strip form,
  .page-search {
    border-radius: 22px;
    flex-direction: column;
  }

  .search-strip input,
  .page-search input {
    min-height: 46px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .player-box {
    border-radius: 18px;
  }

  .player-button {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
  }
}
