:root {
  --bg: #f8f7ff;
  --text: #172033;
  --muted: #64748b;
  --line: rgba(255, 255, 255, 0.36);
  --purple: #9333ea;
  --pink: #db2777;
  --blue: #2563eb;
  --yellow: #facc15;
  --shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(240, 147, 251, 0.28), transparent 34rem),
    radial-gradient(circle at top right, rgba(79, 172, 254, 0.25), transparent 32rem),
    linear-gradient(135deg, #fff7fb 0%, #f6f0ff 44%, #edf7ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.38), transparent 22rem);
  z-index: -2;
}

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;
}

.glass-effect {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(83, 60, 141, 0.12);
}

.text-gradient {
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nebula-gradient,
.primary-button {
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #4facfe, #00f2fe);
}

.marshmallow-gradient {
  background: linear-gradient(120deg, #ffd1dc, #ffb6c1, #e6b3ff, #c7b3ff, #b3d9ff);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header:hover {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 10px 24px rgba(147, 51, 234, 0.35);
}

.logo-text {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.header-search {
  flex: 1;
  max-width: 360px;
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.26);
}

.header-search input,
.mobile-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 9px 12px;
  color: var(--text);
}

.header-search button,
.mobile-search button {
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: #475569;
}

.nav-link {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--purple);
  border-color: var(--purple);
}

.mobile-menu-button {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.mobile-panel.is-open {
  display: grid;
  gap: 12px;
}

.mobile-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  background: rgba(147, 51, 234, 0.08);
}

.mobile-search {
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.95);
}

.hero-slider {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #111827;
}

.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,
.detail-bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  filter: blur(12px) brightness(0.68);
  transform: scale(1.08);
}

.hero-shade,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 40%, rgba(147, 51, 234, 0.28), transparent 26rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.28), rgba(2, 6, 23, 0.88));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 72vh;
  margin: 0 auto;
  padding: 110px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
  color: #fff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 17px;
  font-weight: 800;
}

.hero-kicker::before {
  content: "✦";
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0 0 18px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.hero-copy h1,
.hero-copy h2 {
  font-size: clamp(42px, 7vw, 74px);
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.hero-copy p,
.detail-copy p {
  max-width: 720px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 26px;
}

.hero-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.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;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(147, 51, 234, 0.28);
}

.primary-button.small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 14px;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.hero-poster {
  display: block;
  align-self: center;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

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

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

.hero-dot {
  width: 38px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

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

.narrow-top {
  padding-top: 34px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 26px;
}

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 14px 30px rgba(147, 51, 234, 0.28);
}

.section-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--purple);
  font-weight: 800;
  background: rgba(147, 51, 234, 0.1);
}

.movie-grid,
.poster-grid,
.category-grid,
.wide-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

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

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

.scroll-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x mandatory;
}

.scroll-row .movie-card {
  width: 310px;
  flex: 0 0 310px;
  scroll-snap-align: start;
}

.movie-card,
.poster-card,
.wide-card,
.category-card {
  overflow: hidden;
  border-radius: 24px;
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-cover img,
.poster-image-wrap img,
.wide-cover img,
.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .card-cover img,
.poster-card:hover .poster-image-wrap img,
.wide-card:hover .wide-cover img,
.rank-row:hover .rank-cover img {
  transform: scale(1.1);
}

.card-play,
.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 42px;
  background: rgba(0, 0, 0, 0.34);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .card-play,
.poster-card:hover .poster-overlay {
  opacity: 1;
}

.card-region {
  position: absolute;
  top: 12px;
  right: 12px;
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.72);
}

.card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.card-body strong,
.poster-info strong,
.wide-body strong,
.rank-body strong {
  font-size: 17px;
  line-height: 1.3;
  color: #1e293b;
}

.card-desc,
.wide-body em,
.rank-body em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.poster-info small,
.wide-body span,
.rank-body span {
  color: #64748b;
  font-size: 13px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  color: #7e22ce;
  font-size: 12px;
  font-weight: 800;
  background: rgba(147, 51, 234, 0.1);
}

.tag-row.large span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.poster-card {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.68);
}

.poster-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.poster-info {
  display: grid;
  gap: 5px;
  padding: 12px;
}

.poster-info strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wide-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
}

.wide-cover {
  overflow: hidden;
  min-height: 180px;
}

.wide-body {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 18px;
}

.category-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  min-height: 250px;
}

.category-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.category-card strong {
  font-size: 20px;
}

.category-card em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
}

.category-links {
  display: grid;
  gap: 5px;
  margin-top: auto;
  font-size: 13px;
  color: var(--purple);
}

.category-links a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 72px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 32px;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -90px;
  top: -120px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.22), rgba(79, 172, 254, 0.18));
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(34px, 6vw, 60px);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.crumbs.light {
  color: rgba(255, 255, 255, 0.78);
}

.crumbs a:hover {
  color: var(--purple);
}

.crumbs.light a:hover {
  color: #fff;
}

.filter-panel,
.search-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 24px;
}

.filter-panel input,
.search-panel input,
.search-panel select {
  min-height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  outline: none;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
}

.filter-panel input,
.search-panel input {
  flex: 1;
  min-width: 240px;
}

.category-overview-list {
  display: grid;
  gap: 26px;
  margin-top: 34px;
}

.category-overview {
  padding: 24px;
  border-radius: 30px;
}

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-overview h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.category-overview p {
  margin: 0;
  color: var(--muted);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 120px minmax(0, 1fr) 70px;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 24px;
}

.rank-number {
  color: var(--purple);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.rank-cover {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
}

.rank-body {
  display: grid;
  gap: 7px;
}

.rank-score {
  justify-self: center;
  color: #fff;
  font-weight: 900;
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.detail-wrap {
  padding-bottom: 72px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  color: #fff;
  background: #111827;
}

.detail-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 116px 0 56px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 42px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  padding: 10px;
  border-radius: 28px;
}

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

.detail-copy h1 {
  font-size: clamp(38px, 6vw, 68px);
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #0f172a;
  aspect-ratio: 16 / 9;
}

.player-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0f172a;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(147, 51, 234, 0.34), rgba(15, 23, 42, 0.68)),
    rgba(15, 23, 42, 0.42);
}

.player-overlay.is-hidden {
  display: none;
}

.play-ring {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 30px;
  text-indent: 4px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.player-overlay strong {
  max-width: 80%;
  font-size: 22px;
  text-align: center;
}

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

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

.text-panel h2,
.info-panel h2 {
  margin: 0 0 14px;
  font-size: 25px;
}

.text-panel p {
  margin: 0 0 22px;
  color: #334155;
  line-height: 1.95;
  font-size: 16px;
}

.info-panel dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.info-panel dt {
  color: #64748b;
  font-weight: 800;
}

.info-panel dd {
  margin: 0;
  color: #1e293b;
}

.empty-state {
  padding: 26px;
  border-radius: 24px;
  color: #64748b;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

.site-footer {
  margin-top: 72px;
  padding: 36px 0;
  color: #64748b;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  padding-top: 26px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 900;
}

.footer-inner p {
  margin: 0;
}

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

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

  .wide-grid,
  .movie-grid.three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .mobile-menu-button {
    display: inline-flex;
  }

  .header-inner {
    height: 68px;
  }

  .hero-content {
    min-height: 76vh;
    padding-top: 98px;
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

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

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

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

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

  .rank-row {
    grid-template-columns: 42px 92px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }

  .category-overview-head,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container,
  .page-wrap,
  .detail-inner,
  .header-inner,
  .footer-inner {
    width: min(100% - 22px, 1180px);
  }

  .logo-text {
    font-size: 19px;
  }

  .hero-slider,
  .hero-content {
    min-height: 82vh;
  }

  .movie-grid.four-col,
  .movie-grid.three-col,
  .category-grid,
  .poster-grid,
  .poster-grid.compact,
  .wide-grid {
    grid-template-columns: 1fr;
  }

  .scroll-row .movie-card {
    width: 270px;
    flex-basis: 270px;
  }

  .wide-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .wide-cover {
    min-height: 160px;
  }

  .rank-row {
    grid-template-columns: 36px 76px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-body em,
  .rank-body .tag-row {
    display: none;
  }

  .page-hero,
  .text-panel,
  .info-panel {
    border-radius: 22px;
    padding: 22px;
  }

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