:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #34d399;
  --accent-strong: #059669;
  --cyan: #22d3ee;
  --orange: #fb923c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% -10%, rgba(52, 211, 153, 0.18), transparent 32rem),
    radial-gradient(circle at 95% 10%, rgba(34, 211, 238, 0.14), transparent 28rem),
    linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
  color: var(--text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  min-height: 100vh;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  white-space: nowrap;
  letter-spacing: -0.03em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: #022c22;
  box-shadow: 0 12px 30px rgba(52, 211, 153, 0.3);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--soft);
  font-weight: 600;
}

.desktop-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  min-width: 270px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.45);
  overflow: hidden;
}

.header-search input,
.mobile-panel input,
.big-search input,
.local-filter {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

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

.header-search button,
.big-search button,
.mobile-panel button {
  border: 0;
  cursor: pointer;
  color: #022c22;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  font-weight: 800;
}

.header-search button {
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.65);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.mobile-panel {
  padding: 0 16px 18px;
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.98);
}

.mobile-panel a {
  display: block;
  padding: 13px 4px;
  color: var(--soft);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.mobile-panel form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.mobile-panel input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.4);
}

.mobile-panel button {
  padding: 0 16px;
  border-radius: 14px;
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #020617;
}

.hero-slides {
  position: relative;
  height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 42%, rgba(2, 6, 23, 0.12) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.12) 35%, rgba(2, 6, 23, 0.35) 100%);
}

.hero-copy {
  position: absolute;
  left: max(16px, calc((100vw - 1180px) / 2));
  top: 50%;
  width: min(720px, calc(100% - 32px));
  transform: translateY(-50%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.page-hero h1,
.detail-card h1 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.055em;
}

.hero-copy h1 {
  max-width: 860px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
}

.hero-copy h2 {
  margin: 18px 0 12px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.12;
}

.hero-copy p {
  max-width: 680px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.85;
}

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

.hero-tags span,
.tag-row span,
.filter-tags button {
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.1);
  color: #bbf7d0;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span,
.tag-row span {
  padding: 6px 10px;
}

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

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

.primary-btn {
  min-height: 48px;
  padding: 0 24px;
  color: #022c22;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  box-shadow: 0 18px 40px rgba(52, 211, 153, 0.24);
}

.ghost-btn {
  min-height: 48px;
  padding: 0 24px;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.48);
}

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

.hero-controls {
  position: absolute;
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 136px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-controls button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(15, 23, 42, 0.62);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  font-size: 28px;
}

.hero-dots {
  display: flex;
  gap: 7px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

.hero-dot.is-active {
  width: 28px;
  background: var(--accent);
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  transform: translateX(-50%);
}

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.64);
  backdrop-filter: blur(18px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-thumb:hover {
  border-color: rgba(52, 211, 153, 0.48);
  transform: translateY(-2px);
}

.hero-thumb img {
  width: 62px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-thumb span {
  overflow: hidden;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-hero-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-hero-panel h2,
.section-title-row h2,
.category-overview-card h2,
.side-panel h2,
.detail-card h2 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.035em;
}

.search-hero-panel h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.search-hero-panel p,
.category-overview-card p,
.page-hero p,
.side-panel p,
.detail-card p {
  color: var(--soft);
  line-height: 1.8;
}

.big-search {
  display: flex;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.42);
}

.big-search input {
  padding: 0 16px;
  min-height: 50px;
}

.big-search button {
  padding: 0 24px;
  border-radius: 999px;
  white-space: nowrap;
}

.home-section,
.page-main {
  padding: 64px 0;
}

.home-section + .home-section {
  padding-top: 24px;
}

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

.section-title-row h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.section-link {
  min-height: 40px;
  padding: 0 18px;
  color: var(--accent);
  border: 1px solid rgba(52, 211, 153, 0.28);
  background: rgba(52, 211, 153, 0.08);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.58);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  border-color: rgba(52, 211, 153, 0.42);
  transform: translateY(-6px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

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

.play-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.play-pill {
  left: 12px;
  bottom: 12px;
  padding: 7px 11px;
  color: #022c22;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-pill {
  opacity: 1;
  transform: translateY(0);
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff7ed;
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.25);
}

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

.movie-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
}

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

.movie-meta,
.movie-line {
  margin: 0;
}

.movie-meta {
  color: var(--muted);
  font-size: 12px;
}

.movie-line {
  display: -webkit-box;
  min-height: 42px;
  margin-top: 9px;
  overflow: hidden;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  font-size: 11px;
  padding: 4px 8px;
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  isolation: isolate;
}

.category-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.46) saturate(1.1);
  transition: transform 0.25s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.92));
}

.category-tile:hover img {
  transform: scale(1.06);
}

.category-tile span {
  display: block;
  margin-top: 86px;
  font-size: 22px;
  font-weight: 900;
}

.category-tile p {
  color: var(--soft);
  line-height: 1.65;
}

.ranking-panel {
  padding: 40px 0 64px;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  margin-bottom: 34px;
  padding: clamp(30px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(52, 211, 153, 0.12), transparent 40%),
    rgba(15, 23, 42, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.slim-hero {
  margin-bottom: 42px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
}

.page-hero p {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 17px;
}

.category-overview-grid {
  display: grid;
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.58);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  min-height: 190px;
}

.category-cover-stack img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
}

.category-overview-card h2 {
  font-size: 30px;
}

.filter-toolbar {
  margin-top: 26px;
}

.local-filter {
  max-width: 520px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.36);
}

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

.filter-tags button {
  padding: 8px 12px;
  cursor: pointer;
}

.filter-tags button.is-active {
  color: #022c22;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
}

.category-movie-grid .movie-card.is-hidden,
.search-results .movie-card.is-hidden {
  display: none;
}

.search-page-form {
  max-width: 760px;
  margin-top: 24px;
}

.rank-list-grid {
  align-items: start;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

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

.player-card,
.detail-card,
.side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.player-card {
  overflow: hidden;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 24px;
  border: 0;
  color: var(--text);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.player-trigger {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: #022c22;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  box-shadow: 0 16px 44px rgba(52, 211, 153, 0.3);
  font-size: 34px;
  padding-left: 5px;
}

.player-cover strong {
  max-width: 720px;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.16;
}

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

.detail-card h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
}

.lead-text {
  font-size: 18px;
}

.detail-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.detail-meta-list li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.28);
}

.detail-meta-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.detail-meta-list strong {
  color: var(--text);
}

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

.detail-side {
  position: sticky;
  top: 96px;
}

.side-panel {
  padding: 18px;
}

.side-panel img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 20px;
}

.side-panel h2 {
  margin-top: 16px;
  font-size: 24px;
}

.full-btn {
  width: 100%;
}

.related-section {
  padding-bottom: 0;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 46px 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--text);
}

.site-footer p,
.site-footer li {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--accent);
}

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

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

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

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

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

  .detail-side {
    position: static;
  }

  .side-panel {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    align-items: center;
  }
}

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

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

  .nav-shell {
    min-height: 64px;
  }

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

  .hero-carousel,
  .hero-slides {
    min-height: 680px;
    height: 680px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, #020617 2%, rgba(2, 6, 23, 0.82) 42%, rgba(2, 6, 23, 0.28) 100%);
  }

  .hero-copy {
    top: auto;
    bottom: 176px;
    transform: none;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-controls {
    left: 16px;
    right: auto;
    bottom: 114px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    bottom: 20px;
  }

  .hero-thumb:nth-child(n + 3) {
    display: none;
  }

  .search-hero-panel,
  .category-overview-card,
  .footer-grid,
  .side-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .big-search {
    border-radius: 22px;
    flex-direction: column;
  }

  .big-search button {
    min-height: 48px;
  }

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

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .hero-carousel,
  .hero-slides {
    height: 640px;
    min-height: 640px;
  }

  .hero-copy {
    bottom: 146px;
  }

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

  .hero-copy h2 {
    font-size: 24px;
  }

  .hero-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .hero-strip {
    display: none;
  }

  .hero-controls {
    bottom: 34px;
  }

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

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

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

  .movie-line {
    min-height: auto;
  }

  .page-hero {
    padding: 24px;
  }

  .category-cover-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-cover-stack img {
    height: 150px;
  }

  .player-trigger {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
