:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.78);
  --line: rgba(103, 232, 249, 0.18);
  --line-strong: rgba(45, 212, 191, 0.38);
  --text: #e5f7fb;
  --muted: #94a3b8;
  --muted-2: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --teal: #14b8a6;
  --teal-soft: #5eead4;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(34, 211, 238, 0.18), transparent 32rem),
    radial-gradient(circle at 85% 0%, rgba(20, 184, 166, 0.14), transparent 30rem),
    linear-gradient(135deg, #020617 0%, #0f172a 48%, #042f2e 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.is-menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(17, 94, 89, 0.94), rgba(22, 78, 99, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, var(--container));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand.small {
  margin-bottom: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.35);
}

.brand-text {
  font-size: 20px;
  background: linear-gradient(90deg, #67e8f9, #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  color: rgba(226, 232, 240, 0.86);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #67e8f9;
}

.header-search {
  width: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 9px 12px 9px 16px;
  color: white;
  background: transparent;
}

.header-search input::placeholder {
  color: rgba(207, 250, 254, 0.58);
}

.header-search button {
  border: 0;
  padding: 9px 16px;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, var(--cyan-strong), var(--teal));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 2px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.96);
}

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

.mobile-panel nav,
.mobile-cats {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 14px 0;
  display: grid;
  gap: 10px;
}

.mobile-cats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.mobile-cats a {
  color: var(--muted-2);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 680px;
  padding: 46px 0 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.16), transparent 24rem),
    linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.68));
}

.hero-shell {
  position: relative;
  width: min(100% - 32px, var(--container));
  min-height: 610px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.44;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.08);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.72) 48%, rgba(2, 6, 23, 0.34) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 610px;
  padding: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #67e8f9;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #dbeafe;
  font-size: 18px;
}

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

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 999px;
  color: #cffafe;
  background: rgba(255, 255, 255, 0.08);
}

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

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

.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--cyan-strong), var(--teal));
  box-shadow: 0 16px 38px rgba(20, 184, 166, 0.28);
}

.ghost-btn {
  color: #e0f2fe;
  border: 1px solid rgba(103, 232, 249, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.3);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.44);
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.25), rgba(15, 23, 42, 0.9));
}

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 64px;
  bottom: 34px;
  display: flex;
  gap: 10px;
}

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

.hero-dot.active {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
}

.quick-search-section,
.content-section {
  padding: 72px 0;
}

.alt-section {
  background: rgba(15, 23, 42, 0.42);
  border-top: 1px solid rgba(103, 232, 249, 0.1);
  border-bottom: 1px solid rgba(103, 232, 249, 0.1);
}

.quick-search-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.18), rgba(15, 23, 42, 0.84));
  box-shadow: var(--shadow);
}

.quick-search-card h2,
.section-head h2,
.copy-card h2,
.footer-links h2 {
  margin: 0;
  line-height: 1.2;
}

.quick-search-card h2,
.section-head h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.quick-search-card p,
.section-head p,
.copy-card p,
.category-card-large p,
.page-hero p {
  color: var(--muted-2);
}

.big-search {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.big-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 16px 18px;
  color: white;
  background: transparent;
}

.big-search button {
  border: 0;
  padding: 0 24px;
  color: white;
  cursor: pointer;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan-strong), var(--teal));
}

.chip-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip {
  padding: 9px 13px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 999px;
  color: #cffafe;
  background: rgba(255, 255, 255, 0.06);
}

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

.section-head a,
.text-link {
  color: #67e8f9;
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.16);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(103, 232, 249, 0.42);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.poster-link {
  display: block;
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.28), transparent 14rem),
    linear-gradient(135deg, #0f172a, #134e4a);
}

.poster-frame img {
  transition: transform 0.32s ease;
}

.movie-card:hover .poster-frame img {
  transform: scale(1.06);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.8));
}

.play-dot {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--cyan-strong), var(--teal));
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.34);
}

.rank-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

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

.movie-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #bae6fd;
  font-size: 13px;
}

.movie-meta span,
.detail-meta span {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.16);
}

.movie-card h2 {
  min-height: 50px;
  margin: 10px 0 8px;
  color: white;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h2 a:hover {
  color: #67e8f9;
}

.movie-card p {
  min-height: 68px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.tag-row span {
  min-height: 24px;
  padding: 3px 8px;
  font-size: 12px;
}

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

.category-tile {
  min-height: 150px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.24), rgba(15, 23, 42, 0.84));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.category-tile span {
  color: white;
  font-size: 22px;
  font-weight: 800;
}

.category-tile strong {
  color: var(--muted-2);
  font-weight: 500;
}

.page-hero,
.detail-hero {
  padding: 76px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.16), transparent 30rem),
    linear-gradient(135deg, rgba(8, 47, 73, 0.5), rgba(2, 6, 23, 0.72));
  border-bottom: 1px solid rgba(103, 232, 249, 0.12);
}

.small-hero h1,
.category-hero h1,
.detail-info h1 {
  font-size: clamp(38px, 6vw, 70px);
}

.category-hero-grid,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 42px;
  align-items: center;
}

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

.spotlight-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-soft);
}

.spotlight-item span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px;
  border-radius: 12px;
  color: white;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.72);
}

.filter-panel {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.7);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: #bae6fd;
  font-size: 14px;
  font-weight: 700;
}

.filter-search input,
.filter-selects select {
  min-height: 44px;
  border: 1px solid rgba(103, 232, 249, 0.26);
  border-radius: 12px;
  outline: 0;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.filter-search input {
  padding: 0 14px;
}

.filter-selects {
  display: flex;
  gap: 12px;
}

.filter-selects select {
  padding: 0 12px;
}

.filter-selects option {
  color: #0f172a;
}

.empty-state {
  display: none;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 16px;
  color: #cffafe;
  background: rgba(8, 145, 178, 0.16);
}

.empty-state.show {
  display: block;
}

.category-large-grid {
  display: grid;
  gap: 22px;
}

.category-card-large {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
}

.category-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bg-soft);
}

.category-samples {
  margin: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-samples a {
  padding: 6px 10px;
  border-radius: 999px;
  color: #cffafe;
  background: rgba(34, 211, 238, 0.1);
}

.rank-table-wrap {
  margin-top: 34px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.72);
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.rank-table th,
.rank-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  text-align: left;
}

.rank-table th {
  color: #67e8f9;
  background: rgba(8, 145, 178, 0.16);
}

.rank-table a {
  color: white;
  font-weight: 800;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted-2);
}

.breadcrumbs a {
  color: #67e8f9;
}

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

.detail-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}

.detail-one-line {
  color: #dbeafe;
  font-size: 18px;
}

.detail-meta {
  margin: 18px 0;
}

.detail-tags {
  margin-top: 14px;
}

.player-section {
  padding: 48px 0 18px;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.28);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 14px;
  border: 0;
  color: white;
  cursor: pointer;
  background:
    linear-gradient(0deg, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.26)),
    radial-gradient(circle at 50% 48%, rgba(34, 211, 238, 0.18), transparent 18rem);
}

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

.play-circle {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-strong), var(--teal));
  box-shadow: 0 18px 44px rgba(20, 184, 166, 0.38);
}

.player-overlay strong {
  font-size: 22px;
}

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

.copy-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
}

.copy-card p {
  margin-bottom: 0;
  font-size: 17px;
}

.site-footer {
  border-top: 1px solid rgba(103, 232, 249, 0.12);
  background: rgba(2, 6, 23, 0.72);
}

.footer-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links h2 {
  margin-bottom: 8px;
  color: white;
  font-size: 18px;
}

.footer-links a {
  color: var(--muted-2);
}

.footer-links a:hover {
  color: #67e8f9;
}

.footer-bottom {
  padding: 18px 0 24px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.movie-card.is-hidden,
.rank-table tr.is-hidden {
  display: none;
}

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

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

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

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 300px;
    padding: 48px;
  }

  .hero-poster {
    height: 430px;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

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

  .hero,
  .hero-shell,
  .hero-content {
    min-height: auto;
  }

  .hero-content,
  .quick-search-card,
  .category-hero-grid,
  .detail-grid,
  .detail-copy-grid,
  .footer-inner,
  .category-card-large {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 34px;
  }

  .hero-poster {
    height: 360px;
  }

  .hero-controls {
    left: 34px;
    bottom: 22px;
  }

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

  .filter-selects {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .header-inner {
    height: 62px;
  }

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

  .hero {
    padding-top: 24px;
  }

  .hero h1,
  .small-hero h1,
  .category-hero h1,
  .detail-info h1 {
    font-size: 38px;
  }

  .hero p,
  .detail-one-line {
    font-size: 16px;
  }

  .quick-search-section,
  .content-section {
    padding: 48px 0;
  }

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

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

  .movie-card h2 {
    min-height: auto;
    font-size: 16px;
  }

  .movie-card p {
    min-height: auto;
    font-size: 13px;
  }

  .page-hero,
  .detail-hero {
    padding: 52px 0;
  }

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

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

  .play-circle {
    width: 64px;
    height: 64px;
  }
}
