:root {
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --secondary-50: #f0fdf4;
  --secondary-600: #16a34a;
  --accent-400: #f59e0b;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --white: #ffffff;
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.10), 0 2px 4px -2px rgb(0 0 0 / 0.10);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.10), 0 4px 6px -4px rgb(0 0 0 / 0.10);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.12), 0 8px 10px -6px rgb(0 0 0 / 0.10);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--neutral-800);
  background: linear-gradient(180deg, var(--neutral-50), var(--white));
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100%, 1280px);
  height: 64px;
  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;
  color: var(--primary-600);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.nav-link {
  color: var(--neutral-700);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-600);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 280px;
}

.header-search input,
.mobile-search input,
.filter-toolbar input,
.filter-toolbar select {
  width: 100%;
  border: 1px solid var(--neutral-300);
  border-radius: 999px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  padding: 10px 44px 10px 18px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-toolbar input:focus,
.filter-toolbar select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgb(14 165 233 / 0.14);
}

.header-search button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--neutral-500);
  background: transparent;
  cursor: pointer;
}

.header-search button:hover {
  color: var(--primary-600);
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--neutral-800);
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--neutral-200);
  padding: 16px 24px 20px;
}

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

.mobile-panel nav {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.mobile-search {
  display: grid;
  gap: 10px;
}

.mobile-search input {
  padding: 11px 16px;
}

.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--primary-600);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 500px;
  height: 70vh;
  max-height: 800px;
  overflow: hidden;
  background: var(--neutral-900);
}

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

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

.hero-mask {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(680px, 100%);
  color: var(--white);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary-400);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy p {
  margin: 0;
  color: #e5e5e5;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  color: #d4d4d4;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 13px;
  border-radius: 999px;
  background: rgb(14 165 233 / 0.30);
  backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.panel-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
  padding: 0 28px;
  color: var(--white);
  background: var(--primary-600);
  box-shadow: var(--shadow-lg);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--primary-700);
  box-shadow: var(--shadow-xl);
}

.ghost-button {
  min-height: 44px;
  padding: 0 22px;
  color: var(--white);
  background: rgb(255 255 255 / 0.14);
  backdrop-filter: blur(10px);
}

.ghost-button:hover {
  background: rgb(255 255 255 / 0.22);
  transform: translateY(-2px);
}

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

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

.section-heading span,
.page-hero span,
.category-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.page-hero h1,
.detail-card h1 {
  margin: 0;
  color: var(--neutral-900);
  font-weight: 900;
  letter-spacing: -0.05em;
}

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

.section-heading p {
  max-width: 660px;
  margin: 8px 0 0;
  color: var(--neutral-600);
}

.section-more,
.text-link {
  color: var(--primary-600);
  font-weight: 800;
}

.section-more:hover,
.text-link:hover {
  color: var(--primary-700);
}

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

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

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

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

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

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

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--neutral-100);
}

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

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

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.0);
  transition: background 0.25s ease;
}

.movie-card:hover .card-media::after {
  background: rgb(0 0 0 / 0.36);
}

.play-hover {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--primary-600);
  background: rgb(255 255 255 / 0.94);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-year,
.rank-badge {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  padding: 4px 9px;
  border-radius: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  background: rgb(0 0 0 / 0.70);
  backdrop-filter: blur(10px);
}

.rank-badge {
  left: 10px;
  right: auto;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-400));
}

.card-body {
  padding: 18px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.card-meta span {
  padding: 3px 9px;
  border-radius: 7px;
  color: var(--primary-700);
  font-size: 12px;
  font-weight: 800;
  background: var(--primary-100);
}

.card-meta em {
  color: var(--neutral-500);
  font-size: 12px;
  font-style: normal;
}

.card-body h3 {
  margin: 0 0 8px;
  color: var(--neutral-800);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body h3 a:hover {
  color: var(--primary-600);
}

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

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span,
.detail-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--neutral-600);
  font-size: 12px;
  background: var(--neutral-100);
}

.large-card .card-body h3 {
  font-size: 20px;
}

.horizontal-card {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.horizontal-card .card-media {
  aspect-ratio: auto;
  min-height: 220px;
}

.soft-panel,
.white-panel,
.explore-panel {
  border-radius: 28px;
}

.soft-panel {
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
}

.white-panel {
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: start;
}

.rank-panel {
  position: sticky;
  top: 88px;
  border-radius: 24px;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--neutral-800), var(--neutral-900));
  box-shadow: var(--shadow-xl);
}

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

.rank-panel h2 {
  font-size: 28px;
}

.rank-panel p {
  margin-top: 8px;
  color: var(--neutral-300);
}

.rank-list,
.mini-rank,
.ranking-table {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.rank-list li + li,
.mini-rank li + li,
.ranking-table li + li {
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

.rank-list a,
.mini-rank a,
.ranking-table a {
  display: grid;
  align-items: center;
  gap: 12px;
}

.rank-list a {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  padding: 12px 0;
}

.rank-list span,
.mini-rank span,
.ranking-table span {
  color: var(--accent-400);
  font-weight: 900;
}

.rank-list strong,
.ranking-table strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-list em,
.ranking-table em {
  color: var(--neutral-300);
  font-style: normal;
  font-size: 13px;
}

.panel-link {
  width: 100%;
  margin-top: 18px;
  color: var(--white);
  background: rgb(255 255 255 / 0.12);
}

.panel-link:hover {
  background: rgb(255 255 255 / 0.22);
}

.explore-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
}

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

.explore-panel h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.explore-panel p {
  max-width: 680px;
  margin-top: 10px;
  color: rgb(255 255 255 / 0.82);
}

.explore-links {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.explore-links a {
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
  font-weight: 800;
  background: rgb(255 255 255 / 0.14);
}

.explore-links a:hover {
  background: rgb(255 255 255 / 0.24);
}

.page-hero {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 56px 24px 0;
}

.small-hero > div {
  border-radius: 28px;
  padding: clamp(34px, 6vw, 64px);
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
  box-shadow: var(--shadow-lg);
}

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

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--neutral-600);
  font-size: 18px;
}

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

.category-card {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 18px;
  min-height: 190px;
  border-radius: 22px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.category-cover {
  overflow: hidden;
  border-radius: 18px;
  background: var(--neutral-100);
}

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

.category-card h2 {
  margin: 0 0 8px;
  color: var(--neutral-900);
  font-size: 22px;
  line-height: 1.25;
}

.category-card p {
  margin: 0 0 14px;
  color: var(--neutral-600);
  font-size: 14px;
}

.filter-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 170px 170px;
  gap: 16px;
  margin-bottom: 28px;
  border-radius: 22px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.filter-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--neutral-600);
  font-size: 13px;
  font-weight: 800;
}

.filter-toolbar input,
.filter-toolbar select {
  min-height: 44px;
  padding: 0 16px;
  color: var(--neutral-800);
}

.empty-state {
  display: none;
  border-radius: 20px;
  padding: 30px;
  color: var(--neutral-600);
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

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

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 30px;
  align-items: start;
}

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

.ranking-table {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.ranking-table li + li {
  border-top-color: var(--neutral-200);
}

.ranking-table a {
  grid-template-columns: 48px minmax(0, 1fr) auto;
  padding: 15px 18px;
}

.ranking-table a:hover {
  background: var(--primary-50);
}

.ranking-table em {
  color: var(--neutral-500);
}

.player-section {
  background: var(--neutral-900);
}

.player-shell {
  position: relative;
  width: min(100%, 1280px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-cover-button {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgb(0 0 0 / 0.12), rgb(0 0 0 / 0.62));
  cursor: pointer;
}

.player-cover-button span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: var(--primary-600);
  font-size: 34px;
  background: rgb(255 255 255 / 0.94);
  box-shadow: var(--shadow-xl);
}

.player-cover-button strong {
  font-size: 18px;
}

.player-shell.is-playing .player-cover-button {
  opacity: 0;
  pointer-events: none;
}

.detail-section {
  padding-top: 36px;
}

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

.breadcrumb a:hover {
  color: var(--primary-600);
}

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

.detail-card,
.side-card,
.poster-card {
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

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

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

.detail-meta-row span {
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--primary-700);
  font-size: 13px;
  font-weight: 850;
  background: var(--primary-100);
}

.detail-card h1 {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.15;
}

.lead-text {
  margin: 18px 0 24px;
  color: var(--neutral-600);
  font-size: 18px;
  line-height: 1.8;
}

.detail-genre {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--neutral-200);
  color: var(--neutral-600);
}

.detail-card section + section {
  margin-top: 30px;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 14px;
  color: var(--neutral-900);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.detail-card section p {
  margin: 0;
  color: var(--neutral-700);
  font-size: 16px;
  line-height: 1.9;
}

.detail-side {
  display: grid;
  gap: 22px;
}

.poster-card {
  overflow: hidden;
  padding: 18px;
}

.poster-card img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.full-button {
  width: 100%;
  margin-top: 16px;
}

.side-card {
  padding: 24px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--neutral-500);
}

.side-card dd {
  margin: 0;
  color: var(--neutral-800);
  font-weight: 750;
}

.mini-rank {
  margin-top: 0;
}

.mini-rank li + li {
  border-top-color: var(--neutral-200);
}

.mini-rank a {
  grid-template-columns: 28px minmax(0, 1fr);
  padding: 10px 0;
  color: var(--neutral-700);
  font-weight: 750;
}

.mini-rank a:hover {
  color: var(--primary-600);
}

.site-footer {
  margin-top: 40px;
  color: var(--neutral-300);
  background: var(--neutral-900);
}

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

.footer-shell p {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--neutral-400);
}

.footer-shell h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 16px;
}

.footer-shell a:not(.footer-brand) {
  display: block;
  margin-top: 8px;
  color: var(--neutral-300);
}

.footer-shell a:hover {
  color: var(--primary-400);
}

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

  .menu-toggle {
    display: block;
  }

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

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

  .rank-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    height: 60px;
    padding: 0 16px;
  }

  .brand {
    font-size: 20px;
  }

  .hero {
    min-height: 560px;
    height: auto;
  }

  .hero-content {
    padding: 86px 18px 54px;
  }

  .hero-mask {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.68));
  }

  .hero-actions {
    display: grid;
  }

  .content-section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

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

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

  .three-grid,
  .four-grid,
  .two-grid,
  .category-grid,
  .ranking-highlight {
    grid-template-columns: 1fr;
  }

  .horizontal-card,
  .category-card {
    grid-template-columns: 1fr;
  }

  .horizontal-card .card-media {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

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

  .explore-panel,
  .footer-shell {
    grid-template-columns: 1fr;
    display: grid;
  }

  .ranking-table a {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .ranking-table em {
    grid-column: 2;
  }

  .player-shell {
    aspect-ratio: 16 / 10;
  }

  .player-cover-button span {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
