:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(148, 163, 184, 0.18);
  --line-bright: rgba(34, 211, 238, 0.34);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-light: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --cyan-soft: rgba(34, 211, 238, 0.13);
  --blue: #2563eb;
  --gold: #facc15;
  --danger: #fb7185;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --radius-sm: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 36rem),
    linear-gradient(135deg, #020617 0%, #0f172a 48%, #020617 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.24), rgba(37, 99, 235, 0.32));
  box-shadow: 0 0 38px rgba(34, 211, 238, 0.22);
}

.brand-mark svg {
  width: 27px;
  fill: var(--cyan);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.nav-link {
  color: var(--muted-light);
  font-weight: 650;
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

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

.nav-link:hover {
  transform: translateY(-1px);
}

.nav-link-sub {
  color: #94a3b8;
  font-size: 14px;
}

.header-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 250px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
}

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

.header-search button {
  border: 0;
  color: white;
  background: var(--cyan-strong);
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 700;
}

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

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--muted-light);
  border-radius: 999px;
}

main {
  min-height: 68vh;
}

.hero {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

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

.hero-bg,
.detail-bg img,
.category-card img,
.movie-card img,
.hero-poster img,
.detail-poster img,
.mini-poster-row img {
  object-fit: cover;
  background: linear-gradient(145deg, #0f172a, #111827);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.58;
}

.hero-bg.is-empty,
.detail-bg img.is-empty,
.category-card img.is-empty,
.movie-card img.is-empty,
.hero-poster img.is-empty,
.detail-poster img.is-empty,
.mini-poster-row img.is-empty,
video[poster].is-empty {
  opacity: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0.2)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.98), transparent 54%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 74vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: center;
  padding: 80px 0 110px;
}

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

.hero-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.8;
  max-width: 760px;
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted-light);
}

.hero-meta span,
.detail-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid var(--line);
}

.hero-meta span:first-child,
.detail-meta span:first-child {
  color: var(--gold);
}

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

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

.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--cyan-strong), var(--blue));
  box-shadow: 0 16px 48px rgba(34, 211, 238, 0.26);
}

.ghost-btn {
  color: var(--text);
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid var(--line);
}

.ghost-btn.small {
  min-height: 40px;
  padding: 0 18px;
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 58px rgba(34, 211, 238, 0.23);
}

.hero-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.13), rgba(37, 99, 235, 0.11));
  box-shadow: var(--shadow);
  border: 1px solid var(--line-bright);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

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

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

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

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

.glow-section {
  position: relative;
}

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

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-more {
  color: var(--cyan);
  font-weight: 800;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-bright);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.36);
}

.card-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.12), rgba(37, 99, 235, 0.12));
}

.card-poster img {
  width: 100%;
  height: 100%;
  transition: transform 0.32s ease, opacity 0.2s ease;
}

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

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 800;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  color: white;
  background: rgba(6, 182, 212, 0.94);
  padding: 7px 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #020617;
  background: var(--gold);
}

.card-body {
  padding: 16px;
}

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

.card-meta span + span::before {
  content: "·";
  margin-right: 8px;
  color: rgba(148, 163, 184, 0.62);
}

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

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

.card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card-tags span,
.detail-tags span {
  color: var(--cyan);
  font-size: 12px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(34, 211, 238, 0.08);
  padding: 5px 9px;
  border-radius: 999px;
}

.movie-card.compact .card-body h3 {
  font-size: 16px;
}

.movie-card.compact .card-body p {
  font-size: 13px;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

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

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.category-card span,
.category-card p {
  position: relative;
  z-index: 1;
}

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

.category-card p {
  color: var(--muted-light);
  line-height: 1.65;
  margin: 10px 0 0;
  font-size: 14px;
}

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

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

.rank-list a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--line);
}

.rank-list a:hover {
  border-color: var(--line-bright);
}

.rank-list span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #020617;
  background: var(--cyan);
  font-weight: 900;
}

.rank-list strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-list em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.breadcrumb {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

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

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.2), transparent 32rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.78));
  box-shadow: var(--shadow);
}

.page-hero.small-hero,
.page-hero.search-hero,
.page-hero.channel-hero {
  min-height: 240px;
  display: flex;
  align-items: center;
}

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

.filter-panel {
  padding-top: 32px;
}

.filters,
.big-search {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.62);
}

.filters input,
.filters select,
.filters button,
.big-search input,
.big-search button {
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  color: var(--text);
  background: rgba(2, 6, 23, 0.65);
  min-height: 46px;
  padding: 0 14px;
}

.filters input,
.big-search input {
  flex: 1;
}

.filters button,
.big-search button {
  background: var(--cyan-strong);
  border-color: transparent;
  cursor: pointer;
  font-weight: 800;
}

.empty-state,
.search-meta {
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

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

.category-overview-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.62);
  padding: 24px;
}

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

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

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

.mini-poster-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mini-poster-row a {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.64);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
}

.mini-poster-row img {
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.mini-poster-row span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-hero {
  margin-top: 28px;
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}

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

.detail-bg img {
  width: 100%;
  height: 100%;
  opacity: 0.34;
  filter: blur(3px);
  transform: scale(1.04);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.98)),
    linear-gradient(0deg, rgba(2, 6, 23, 1), transparent 70%);
}

.detail-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 52px 0;
}

.detail-poster {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

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

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

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

.player-section {
  padding-top: 46px;
}

.player-shell {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-bright);
  aspect-ratio: 16 / 9;
}

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

.player-start {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 176px;
  height: 176px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.95), rgba(37, 99, 235, 0.78));
  box-shadow: 0 0 80px rgba(34, 211, 238, 0.36);
  z-index: 5;
}

.player-start[hidden] {
  display: none;
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 38px solid white;
}

.player-status {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: var(--muted-light);
  font-size: 14px;
  z-index: 6;
}

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

.article-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.68);
  padding: 28px;
}

.article-panel h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.article-panel p {
  margin: 0;
  color: var(--muted-light);
  line-height: 1.9;
}

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

.info-grid div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.44);
  border: 1px solid var(--line);
}

.info-grid strong,
.info-grid span {
  display: block;
}

.info-grid strong {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.info-grid span {
  color: var(--text);
  line-height: 1.5;
}

.search-page .movie-grid:empty {
  display: none;
}

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

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 34px;
}

.footer-brand {
  font-size: 22px;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 10px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

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

.footer-links a:hover {
  color: var(--cyan);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav.is-open {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 18px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

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

@media (max-width: 820px) {
  .hero,
  .hero-content {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 52px;
  }

  .hero h1,
  .page-hero h1,
  .detail-copy h1 {
    letter-spacing: -0.03em;
  }

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

  .category-grid,
  .mini-poster-row,
  .rank-list {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero {
    padding: 30px;
  }

  .detail-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .detail-poster {
    width: min(270px, 78vw);
  }

  .filters,
  .big-search {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .content-section,
  .breadcrumb,
  .page-hero,
  .detail-inner,
  .footer-inner,
  .hero-content {
    width: min(100% - 24px, 1180px);
  }

  .brand-text small {
    display: none;
  }

  .hero-copy p,
  .page-hero p,
  .detail-one-line {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .movie-grid,
  .category-grid,
  .mini-poster-row,
  .rank-list {
    grid-template-columns: 1fr;
  }

  .card-poster {
    aspect-ratio: 16 / 10;
  }

  .player-start {
    width: 126px;
    height: 126px;
  }

  .play-icon {
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-width: 30px;
  }
}
