:root {
  --teal: #0d9488;
  --cyan: #0891b2;
  --blue: #2563eb;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  --soft-shadow: 0 10px 35px rgba(15, 23, 42, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

main {
  min-height: 60vh;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  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;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 14px 30px rgba(8, 145, 178, 0.28);
}

.brand-icon.large {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 22px;
  font-size: 24px;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 21px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  color: var(--slate-500);
  font-size: 12px;
  margin-top: 2px;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal);
  background: #ecfeff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--slate-700);
  background: var(--slate-100);
  cursor: pointer;
  font-size: 22px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
}

.home-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #0d9488 0%, #0891b2 46%, #2563eb 100%);
}

.hero-pattern,
.home-hero::before,
.home-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-pattern {
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.55) 1px, transparent 0);
  background-size: 34px 34px;
}

.home-hero::before {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 80px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(8px);
}

.home-hero::after {
  width: 560px;
  height: 560px;
  right: -160px;
  bottom: -220px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  filter: blur(10px);
}

.hero-carousel {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 56px;
  padding: 74px 0 86px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.eyebrow.dark {
  color: var(--teal);
  background: #ccfbf1;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 760px;
  margin: 0 0 26px;
  color: #e0f2fe;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.75;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
}

.hero-tags span {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn.primary {
  color: var(--teal);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.btn.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  display: block;
  padding: 14px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 36px 80px rgba(15, 23, 42, 0.25);
}

.hero-poster::before {
  position: absolute;
  inset: 36px -18px -18px 36px;
  content: "";
  z-index: -1;
  border-radius: 34px;
  background: rgba(15, 23, 42, 0.22);
  filter: blur(18px);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  border-radius: 24px;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 48px;
  display: flex;
  gap: 10px;
}

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

.hero-dots button.active {
  width: 38px;
  background: var(--white);
}

.section {
  padding: 68px 0;
}

.intro-search {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: 34px;
  align-items: center;
}

.intro-search h2,
.section-heading h2,
.ranking-head h2,
.cta-inner h2,
.sub-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.intro-search p,
.sub-hero p,
.detail-info p,
.cta-inner p {
  color: var(--slate-600);
  font-size: 17px;
  line-height: 1.8;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(8, 145, 178, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

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

.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--slate-900);
  background: var(--white);
  outline: 0;
  font: inherit;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

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

.section-heading.compact {
  align-items: center;
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

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

.category-card {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  transition: 0.22s ease;
}

.category-card::after {
  position: absolute;
  inset: auto -60px -70px auto;
  content: "";
  width: 180px;
  height: 180px;
  border-radius: 999px;
  opacity: 0.14;
  background: currentColor;
}

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

.category-card .category-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  margin-bottom: 18px;
}

.category-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.category-card p {
  margin: 0 0 16px;
  color: var(--slate-600);
  line-height: 1.65;
  font-size: 14px;
}

.category-card em {
  color: var(--slate-500);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.color-blue { color: #2563eb; }
.color-amber { color: #d97706; }
.color-emerald { color: #059669; }
.color-rose { color: #e11d48; }
.color-violet { color: #7c3aed; }
.color-cyan { color: #0891b2; }
.color-teal { color: #0d9488; }
.color-pink { color: #db2777; }
.color-orange { color: #ea580c; }
.color-slate { color: #475569; }

.feature-section {
  background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 100%);
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #164e63);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card.featured .poster-link img {
  aspect-ratio: 16 / 10;
}

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

.play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: scale(0.8);
  transition: 0.22s ease;
}

.movie-card:hover .play-badge {
  opacity: 1;
  transform: scale(1);
}

.year-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--slate-700);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
}

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

.movie-card-body h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card-body h3 a:hover {
  color: var(--teal);
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--teal);
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 800;
}

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

.ranking-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.sticky-side {
  position: sticky;
  top: 92px;
}

.ranking-head {
  margin-bottom: 18px;
}

.compact-list,
.rank-list {
  display: grid;
  gap: 12px;
}

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

.compact-card {
  display: grid;
  grid-template-columns: auto 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.75);
  transition: 0.18s ease;
}

.compact-card:hover {
  border-color: rgba(13, 148, 136, 0.35);
  background: #ecfeff;
}

.compact-card img {
  width: 64px;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, #0f172a, #164e63);
}

.compact-card strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 15px;
}

.compact-card em {
  display: block;
  margin-top: 5px;
  color: var(--slate-500);
  font-style: normal;
  font-size: 12px;
  line-height: 1.4;
}

.rank-num {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  font-size: 12px;
  font-weight: 900;
}

.cta-section {
  padding: 78px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

.cta-inner {
  text-align: center;
}

.cta-inner p {
  color: #cbd5e1;
}

.sub-hero {
  padding: 84px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-800), #164e63 48%, var(--teal));
}

.sub-hero p {
  max-width: 760px;
  color: #dbeafe;
}

.category-hero.color-blue { background: linear-gradient(135deg, #1d4ed8, #0f766e); }
.category-hero.color-amber { background: linear-gradient(135deg, #b45309, #0f766e); }
.category-hero.color-emerald { background: linear-gradient(135deg, #047857, #0891b2); }
.category-hero.color-rose { background: linear-gradient(135deg, #be123c, #0f766e); }
.category-hero.color-violet { background: linear-gradient(135deg, #6d28d9, #0369a1); }
.category-hero.color-cyan { background: linear-gradient(135deg, #0e7490, #2563eb); }
.category-hero.color-teal { background: linear-gradient(135deg, #0f766e, #164e63); }
.category-hero.color-pink { background: linear-gradient(135deg, #be185d, #0891b2); }
.category-hero.color-orange { background: linear-gradient(135deg, #c2410c, #0f766e); }
.category-hero.color-slate { background: linear-gradient(135deg, #334155, #0369a1); }

.detail-hero {
  padding: 54px 0;
  color: var(--white);
  background: radial-gradient(circle at top left, rgba(20, 184, 166, 0.4), transparent 32%), linear-gradient(135deg, var(--slate-900), #0f766e 64%, #0891b2);
}

.detail-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.detail-poster {
  padding: 12px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

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

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

.crumbs em {
  font-style: normal;
  color: var(--white);
}

.detail-info p {
  max-width: 860px;
  color: #e0f2fe;
}

.detail-info .btn.primary {
  color: var(--teal);
}

.player-card {
  padding: 24px;
  border-radius: 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), #0f172a);
  box-shadow: var(--shadow);
}

.light-heading h2 {
  color: var(--white);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  aspect-ratio: 16 / 9;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.76));
  cursor: pointer;
  transition: 0.2s ease;
}

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

.play-circle {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.94);
  font-size: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.play-overlay strong {
  max-width: min(720px, calc(100% - 44px));
  font-size: clamp(20px, 3vw, 34px);
}

.play-overlay em {
  font-style: normal;
  color: #cbd5e1;
}

.detail-content {
  padding-top: 0;
}

.prose-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.prose-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.prose-card h2:not(:first-child) {
  margin-top: 30px;
}

.prose-card p {
  color: var(--slate-600);
  line-height: 1.9;
  font-size: 16px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.info-list div {
  padding: 14px;
  border-radius: 16px;
  background: var(--slate-100);
}

.info-list dt {
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 800;
}

.info-list dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.site-footer {
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
  padding: 48px 0;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  display: block;
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-grid h3 {
  margin: 0 0 16px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  text-align: center;
  font-size: 14px;
}

.is-filtered-out {
  display: none !important;
}

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

  .two-column,
  .intro-search {
    grid-template-columns: 1fr;
  }

  .ranking-panel.sticky-side {
    position: static;
  }
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav {
    display: none;
  }

  body.menu-open .mobile-nav {
    display: grid;
    gap: 8px;
  }

  .home-hero,
  .hero-carousel {
    min-height: 780px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 48px 0 92px;
  }

  .hero-poster {
    width: min(320px, 100%);
    margin: 0 auto;
  }

  .hero-dots {
    left: 50%;
    transform: translateX(-50%);
  }

  .feature-grid,
  .movie-grid,
  .category-grid,
  .rank-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-poster {
    width: min(300px, 100%);
    margin: 0 auto;
  }

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

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

@media (max-width: 560px) {
  .shell,
  .header-inner,
  .mobile-nav,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .section {
    padding: 46px 0;
  }

  .home-hero,
  .hero-carousel {
    min-height: 740px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .filter-panel,
  .feature-grid,
  .movie-grid,
  .category-grid,
  .rank-list,
  .footer-grid,
  .info-list {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .compact-card {
    grid-template-columns: auto 58px minmax(0, 1fr);
  }

  .compact-card img {
    width: 58px;
    height: 72px;
  }

  .player-card,
  .prose-card {
    padding: 18px;
    border-radius: 22px;
  }

  .video-frame {
    border-radius: 16px;
  }

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