:root {
  --bg-dark: #020617;
  --bg-panel: #ffffff;
  --bg-soft: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #e2e8f0;
  --cyan: #06b6d4;
  --cyan-deep: #0891b2;
  --blue: #1d4ed8;
  --border: #e2e8f0;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #eff6ff 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.28);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  min-height: 78px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  border-radius: 16px;
  background: linear-gradient(135deg, #22d3ee, #38bdf8);
  box-shadow: 0 0 38px rgba(34, 211, 238, 0.55);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.5);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #cbd5e1;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(6, 182, 212, 0.18);
}

.header-search {
  margin-left: auto;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
}

.header-search input,
.search-page-form input,
.inline-filter input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
}

.header-search input::placeholder,
.search-page-form input::placeholder,
.inline-filter input::placeholder {
  color: rgba(226, 232, 240, 0.68);
}

.header-search button,
.search-page-form button,
.inline-filter button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  cursor: pointer;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 680px;
  color: #ffffff;
  overflow: hidden;
  background: #020617;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.65s ease, transform 1.2s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(34, 211, 238, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.78) 44%, rgba(2, 6, 23, 0.32) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.92));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 24px 170px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(125, 211, 252, 0.45);
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(8, 47, 73, 0.42);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow.dark {
  color: #0891b2;
  border-color: rgba(8, 145, 178, 0.22);
  background: #ecfeff;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.hero h2 {
  margin: 22px 0 12px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.1;
}

.hero p {
  max-width: 700px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

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

.primary-button,
.secondary-button,
.section-link,
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.22s ease;
}

.primary-button {
  min-height: 48px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 16px 42px rgba(37, 99, 235, 0.32);
}

.primary-button:hover,
.secondary-button:hover,
.section-link:hover,
.mini-link:hover {
  transform: translateY(-2px);
}

.secondary-button {
  min-height: 48px;
  padding: 0 22px;
  color: #e0f2fe;
  border: 1px solid rgba(186, 230, 253, 0.36);
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(12px);
}

.hero-tabs {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  width: min(1320px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  transform: translateX(-50%);
}

.hero-tab {
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 18px;
  color: #e2e8f0;
  text-align: left;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.hero-tab.active,
.hero-tab:hover {
  border-color: rgba(34, 211, 238, 0.62);
  background: rgba(8, 145, 178, 0.35);
}

.hero-tab span {
  display: block;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
}

.hero-tab strong {
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.section-panel,
.two-column-section {
  width: min(1320px, calc(100% - 48px));
  margin: 40px auto;
}

.section-panel {
  padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.highlight-panel {
  margin-top: -72px;
  position: relative;
  z-index: 4;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

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

.section-heading p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-link {
  min-height: 42px;
  padding: 0 18px;
  color: #075985;
  background: #ecfeff;
}

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

.category-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 22px;
  color: #ffffff;
  background: #0f172a;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.category-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.54;
  transition: 0.35s ease;
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.74;
}

.category-card span,
.category-card strong {
  position: relative;
  z-index: 2;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}

.category-card span {
  padding-top: 82px;
  font-size: 22px;
  font-weight: 900;
}

.category-card strong {
  margin-top: 8px;
  color: #bae6fd;
  font-size: 13px;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.1);
  transition: 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #155e75);
}

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

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.86));
}

.poster-badge,
.poster-year {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.poster-badge {
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.poster-year {
  right: 10px;
  bottom: 10px;
  background: rgba(15, 23, 42, 0.76);
}

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

.movie-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  color: #0f172a;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-title:hover {
  color: var(--cyan-deep);
}

.movie-meta,
.movie-one-line {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.movie-one-line {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-list,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag-list span,
.detail-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: #075985;
  background: #ecfeff;
  font-size: 12px;
  font-weight: 800;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.mini-link {
  min-height: 34px;
  padding: 0 12px;
  color: #ffffff;
  background: #0f172a;
  font-size: 12px;
}

.mini-link.muted {
  color: #075985;
  background: #e0f2fe;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.two-column-section > .section-panel {
  width: auto;
  margin: 0;
}

.rank-panel {
  position: sticky;
  top: 104px;
  padding: 26px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background: linear-gradient(160deg, #0f172a, #164e63);
  box-shadow: var(--shadow);
}

.rank-panel .section-heading h2 {
  color: #ffffff;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 38px 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  transition: 0.2s ease;
}

.rank-row:hover {
  background: rgba(255, 255, 255, 0.12);
}

.rank-row img {
  width: 54px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-number {
  color: #67e8f9;
  font-size: 18px;
  font-weight: 900;
}

.rank-info strong,
.rank-info em {
  display: block;
}

.rank-info strong {
  display: -webkit-box;
  overflow: hidden;
  color: #ffffff;
  font-size: 14px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rank-info em {
  margin-top: 4px;
  color: #cbd5e1;
  font-style: normal;
  font-size: 12px;
}

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

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #1e3a8a 54%, #155e75);
}

.small-hero {
  padding: 96px 24px;
  text-align: center;
}

.small-hero h1,
.category-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.07em;
}

.small-hero p,
.category-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #dbeafe;
  line-height: 1.8;
}

.category-hero {
  min-height: 420px;
}

.category-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.36));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.inline-filter,
.search-page-form {
  display: flex;
  gap: 10px;
  width: min(680px, 100%);
  margin-top: 28px;
  padding: 8px;
  border: 1px solid rgba(226, 232, 240, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(14px);
}

.search-page-form {
  margin-left: auto;
  margin-right: auto;
}

.category-overview-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  transition: 0.24s ease;
}

.category-overview-card:hover {
  transform: translateY(-5px);
}

.overview-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 3px;
  background: #0f172a;
}

.overview-thumbs img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.category-overview-card div:last-child {
  padding: 18px;
}

.category-overview-card span {
  display: block;
  color: #0f172a;
  font-size: 20px;
  font-weight: 900;
}

.category-overview-card p {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.rank-card {
  position: relative;
}

.rank-card .movie-card {
  height: 100%;
}

.rank-large {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #f97316, #e11d48);
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.34);
}

.detail-hero {
  min-height: 620px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  opacity: 0.28;
  transform: scale(1.04);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.76), rgba(2, 6, 23, 0.48));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 74px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 34px;
  color: #bae6fd;
  font-size: 14px;
  font-weight: 800;
}

.detail-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 44px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.22);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.46);
}

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

.detail-info h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.detail-one-line {
  max-width: 850px;
  margin: 22px 0 0;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.85;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-meta span {
  padding: 9px 13px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.detail-tags {
  margin-bottom: 28px;
}

.player-section {
  margin-top: -48px;
  position: relative;
  z-index: 4;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #020617;
  aspect-ratio: 16 / 9;
  box-shadow: 0 28px 80px rgba(2, 6, 23, 0.26);
}

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

.play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18), rgba(2, 6, 23, 0.64));
  cursor: pointer;
  transition: 0.24s ease;
}

.play-cover span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.38);
  font-size: 34px;
}

.play-cover strong {
  font-size: 20px;
}

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

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

.detail-text-block {
  padding: 26px;
  border-radius: 22px;
  background: #f8fafc;
}

.detail-text-block h2 {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.detail-text-block p {
  margin: 0;
  color: #334155;
  line-height: 1.9;
}

.site-footer {
  margin-top: 70px;
  color: #cbd5e1;
  background: #020617;
}

.footer-inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  gap: 18px;
}

.footer-brand {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.footer-inner p {
  max-width: 820px;
  margin: 0;
  line-height: 1.8;
}

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

.footer-links a {
  color: #67e8f9;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .movie-grid,
  .rank-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .two-column-section {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav.is-open {
    display: grid;
  }

  .header-search {
    order: 4;
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 84px;
    padding-bottom: 260px;
  }

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

  .section-panel,
  .two-column-section,
  .footer-inner,
  .detail-hero-inner {
    width: min(100% - 28px, 1320px);
  }

  .section-panel {
    padding: 22px;
  }

  .movie-grid,
  .movie-grid.compact,
  .rank-card-grid,
  .category-grid,
  .category-overview-grid,
  .detail-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

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

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

@media (max-width: 560px) {
  .brand-text {
    font-size: 20px;
  }

  .hero h1,
  .detail-info h1,
  .small-hero h1,
  .category-hero h1 {
    letter-spacing: -0.05em;
  }

  .hero-tabs,
  .movie-grid,
  .movie-grid.compact,
  .rank-card-grid,
  .category-grid,
  .category-overview-grid,
  .detail-content {
    grid-template-columns: 1fr;
  }

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

  .section-panel {
    border-radius: 22px;
  }

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