* {
  box-sizing: border-box;
}

:root {
  --primary-50: #fef3e2;
  --primary-500: #d89410;
  --primary-600: #b6790d;
  --accent-500: #f95c16;
  --accent-600: #ea420c;
  --secondary-50: #f5f7fa;
  --secondary-700: #3d486a;
  --secondary-800: #353d59;
  --secondary-900: #2f344c;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-strong: 0 24px 60px rgba(17, 24, 39, 0.22);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, var(--secondary-50) 0%, #ffffff 46%, #fff5ed 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(229, 231, 235, 0.9);
}

.header-inner {
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  box-shadow: 0 10px 24px rgba(249, 92, 22, 0.24);
}

.brand-text {
  font-size: 21px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary-600);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #111827;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.mobile-nav.is-open {
  display: grid;
  gap: 10px;
}

.mobile-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.mobile-category-links a {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 13px;
  font-weight: 700;
}

.hero {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  background: var(--secondary-900);
}

.hero-stage {
  min-height: 70vh;
  position: relative;
}

.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-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.05);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(47, 52, 76, 0.96) 0%, rgba(53, 61, 89, 0.76) 44%, rgba(0, 0, 0, 0.52) 100%);
}

.hero-content {
  position: relative;
  max-width: 1280px;
  min-height: 70vh;
  margin: 0 auto;
  padding: 72px 24px 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: center;
  color: #ffffff;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 14px 0 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.tag-row span {
  background: var(--primary-50);
  color: var(--primary-600);
}

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

.small-actions {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  box-shadow: 0 16px 34px rgba(249, 92, 22, 0.28);
}

.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.section .btn-ghost,
.detail-hero .btn-ghost,
.page-hero .btn-ghost {
  color: var(--secondary-900);
  border-color: rgba(216, 148, 16, 0.26);
  background: #ffffff;
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  transform: rotate(2deg);
}

.hero-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.58);
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 28px;
  line-height: 1;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

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

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section-soft {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
}

.section-dark {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  background: linear-gradient(135deg, var(--secondary-900), var(--secondary-800));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading h2,
.page-hero h1,
.detail-copy h1 {
  margin: 10px 0 12px;
  color: var(--secondary-900);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p,
.movie-line,
.rank-info p,
.content-card p,
.player-title p {
  color: var(--muted);
  line-height: 1.8;
}

.row-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.light h2,
.light p,
.section-dark .rank-info h3,
.section-dark .rank-info p {
  color: #ffffff;
}

.text-link {
  color: var(--primary-600);
  font-weight: 900;
}

.text-link.light {
  color: #ffffff;
}

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

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

.category-card {
  min-height: 156px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 231, 235, 0.86);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.movie-card:hover,
.rank-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

.category-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--secondary-900);
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.category-card em {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-600);
  font-style: normal;
  font-weight: 900;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.search-box {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.search-box input,
.filter-selects select,
.global-search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--text);
  background: #ffffff;
  outline: none;
}

.search-box input:focus,
.filter-selects select:focus,
.global-search input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(216, 148, 16, 0.12);
}

.filter-selects {
  display: flex;
  align-items: end;
  gap: 10px;
}

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.86);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--secondary-800);
}

.movie-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.movie-type,
.movie-score {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.movie-type {
  left: 12px;
  background: rgba(47, 52, 76, 0.76);
}

.movie-score {
  right: 12px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
}

.movie-body {
  padding: 16px;
}

.movie-body h3 {
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.4;
}

.movie-body h3 a:hover,
.rank-info h3 a:hover {
  color: var(--primary-600);
}

.movie-line {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 12px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 800;
}

.movie-meta span {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3f4f6;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 96px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section:not(.section-dark) .rank-item {
  border-color: var(--line);
  background: #ffffff;
}

.rank-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  font-weight: 900;
}

.rank-thumb {
  overflow: hidden;
  border-radius: 16px;
  background: var(--secondary-800);
}

.rank-thumb img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.rank-info h3 {
  margin: 0 0 7px;
  color: var(--secondary-900);
  font-size: 18px;
}

.rank-info p {
  display: -webkit-box;
  margin: 0 0 9px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.rank-heat {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-width: 64px;
  color: var(--primary-500);
}

.rank-heat strong {
  font-size: 24px;
}

.rank-heat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 24px 42px;
}

.compact-hero > div {
  padding: 40px;
  border-radius: 32px;
  background: radial-gradient(circle at top right, rgba(249, 92, 22, 0.18), transparent 38%), linear-gradient(135deg, #ffffff, var(--primary-50));
  box-shadow: var(--shadow);
}

.ranking-hero > div {
  color: #ffffff;
  background: radial-gradient(circle at top right, rgba(249, 92, 22, 0.4), transparent 34%), linear-gradient(135deg, var(--secondary-900), var(--secondary-800));
}

.ranking-hero h1,
.ranking-hero p {
  color: #ffffff;
}

.breadcrumbs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--primary-600);
}

.detail-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px 60px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  background: var(--secondary-800);
}

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

.detail-copy {
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-copy .lead {
  color: #4b5563;
  font-size: 19px;
  line-height: 1.8;
}

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

.detail-meta-grid span {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--secondary-50);
  color: var(--secondary-900);
  font-weight: 900;
}

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

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

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

.player-card,
.content-card {
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000000;
  cursor: pointer;
}

.play-trigger {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.64));
  cursor: pointer;
  z-index: 3;
}

.play-trigger span {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  box-shadow: 0 18px 44px rgba(249, 92, 22, 0.34);
  position: relative;
}

.play-trigger span::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 26px;
  border-left: 24px solid #ffffff;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

.play-trigger.is-hidden {
  display: none;
}

.player-title {
  padding: 22px 26px 26px;
}

.player-title h2 {
  margin: 0 0 8px;
  color: var(--secondary-900);
}

.player-title p {
  margin: 0;
}

.prose-section {
  padding-top: 0;
}

.content-card {
  padding: 32px;
}

.content-card h2 {
  margin: 0 0 14px;
  color: var(--secondary-900);
}

.content-card p {
  margin: 0 0 22px;
  font-size: 16px;
}

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

.movie-card-compact .movie-line {
  min-height: 40px;
  font-size: 13px;
}

.global-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 26px;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
  color: var(--muted);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 800;
}

.site-footer {
  color: #d1d5db;
  background: var(--secondary-900);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand {
  color: #ffffff;
  font-size: 20px;
}

.site-footer p {
  max-width: 420px;
  color: #d1d5db;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--primary-500);
  font-size: 16px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

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

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #9ca3af;
  font-size: 14px;
}

[data-hidden="true"] {
  display: none !important;
}

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

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

  .rank-list.compact {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

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

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

  .menu-toggle {
    display: block;
  }

  .header-inner {
    padding: 0 16px;
  }

  .hero,
  .hero-stage,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 50px 18px 84px;
  }

  .hero-poster {
    max-width: 260px;
    transform: none;
  }

  .section,
  .page-hero,
  .detail-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .row-heading,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-panel,
  .global-search {
    grid-template-columns: 1fr;
  }

  .filter-selects {
    flex-direction: column;
    align-items: stretch;
  }

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

  .rank-item {
    grid-template-columns: 46px 74px minmax(0, 1fr);
  }

  .rank-heat {
    display: none;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

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

  .detail-copy,
  .compact-hero > div,
  .content-card {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding: 40px 16px;
  }
}

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

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

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

  .movie-grid,
  .category-grid,
  .category-grid.wide,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-item {
    grid-template-columns: 42px 68px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .rank-info p {
    display: none;
  }

  .play-trigger span {
    width: 68px;
    height: 68px;
  }

  .play-trigger span::after {
    left: 28px;
    top: 20px;
  }
}
