:root {
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --orange-100: #ffedd5;
  --orange-600: #ea580c;
  --shadow-soft: 0 18px 50px rgba(41, 37, 36, 0.13);
  --shadow-card: 0 12px 32px rgba(41, 37, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--stone-800);
  background: linear-gradient(180deg, var(--stone-50), #fffaf0 38%, var(--stone-50));
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 235, 0.94);
  border-bottom: 1px solid var(--amber-200);
  box-shadow: 0 2px 18px rgba(120, 53, 15, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #78350f;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  color: #78350f;
  font-weight: 650;
}

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

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--amber-600);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #78350f;
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 8px 18px 18px;
  border-top: 1px solid var(--amber-200);
  background: var(--amber-50);
}

.mobile-nav a {
  display: block;
  padding: 11px 4px;
  color: #78350f;
  font-weight: 700;
}

.mobile-nav.is-open {
  display: block;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--stone-900);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 25, 23, 0.94), rgba(28, 25, 23, 0.72) 43%, rgba(28, 25, 23, 0.3)), linear-gradient(0deg, rgba(28, 25, 23, 0.85), rgba(28, 25, 23, 0.1) 45%, rgba(28, 25, 23, 0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 60px;
  min-height: 620px;
}

.hero-copy {
  max-width: 710px;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber-300);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--amber-700);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 14px;
  color: white;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy h3 {
  margin: 0 0 18px;
  color: var(--amber-100);
  font-size: clamp(26px, 3vw, 42px);
}

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

.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 12px;
  color: #78350f;
  background: var(--amber-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.32);
}

.btn.ghost {
  color: #78350f;
  background: var(--amber-100);
}

.btn.plain {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-poster:hover img {
  transform: scale(1.05);
}

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 15px;
  color: white;
  background: rgba(217, 119, 6, 0.94);
  border-radius: 999px;
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
}

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

.home-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: 24px;
  align-items: center;
  margin-top: -52px;
  padding: 30px;
  position: relative;
  z-index: 4;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--amber-200);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.home-search-panel h2 {
  margin: 0;
  color: var(--stone-800);
  font-size: clamp(24px, 3vw, 36px);
}

.quick-search,
.filter-panel {
  display: flex;
  gap: 10px;
}

.quick-search input,
.filter-panel input {
  flex: 1;
  min-height: 46px;
  min-width: 0;
  padding: 0 15px;
  color: var(--stone-800);
  background: white;
  border: 1px solid var(--stone-300);
  border-radius: 12px;
  outline: 0;
}

.quick-search input:focus,
.filter-panel input:focus {
  border-color: var(--amber-600);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.quick-search button,
.filter-buttons button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  color: white;
  background: var(--amber-600);
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.page-shell {
  padding: 42px 0 20px;
}

.section-block {
  margin-top: 56px;
}

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

.section-title-row h2 {
  margin: 0;
  color: var(--stone-800);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--amber-700);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.section-link {
  color: var(--amber-700);
  font-weight: 850;
}

.warm-block {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--amber-100), var(--orange-100));
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  background: white;
  border: 1px solid rgba(231, 229, 228, 0.92);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(41, 37, 36, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--stone-200);
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(0, 0, 0, 0);
  font-size: 36px;
  opacity: 0;
  transition: opacity 0.24s ease, background 0.24s ease;
}

.movie-card:hover .poster-hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.corner-label,
.rank-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  color: white;
  background: rgba(217, 119, 6, 0.94);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.rank-badge {
  right: auto;
  left: 10px;
  background: rgba(28, 25, 23, 0.82);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}

.card-body h3 {
  display: -webkit-box;
  min-height: 45px;
  margin: 0;
  overflow: hidden;
  color: var(--stone-800);
  font-size: 16px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.card-line {
  margin: 0;
  color: var(--stone-500);
  font-size: 13px;
  line-height: 1.55;
}

.card-line {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.feature-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 360px;
  border-radius: 26px;
  background: var(--stone-900);
  box-shadow: var(--shadow-soft);
}

.feature-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.feature-card:hover img {
  transform: scale(1.04);
}

.feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 25, 23, 0.9), rgba(28, 25, 23, 0.12) 48%, rgba(28, 25, 23, 0.42));
}

.feature-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
  color: white;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  color: #78350f;
  background: var(--amber-200);
  border-radius: 999px;
  font-weight: 850;
}

.feature-content h3 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.feature-content p {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--stone-100);
  font-size: 17px;
  line-height: 1.75;
}

.feature-meta {
  color: var(--amber-200);
  font-weight: 750;
}

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

.category-card,
.category-overview-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  padding: 16px;
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(41, 37, 36, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.category-card img {
  width: 160px;
  height: 116px;
  object-fit: cover;
  border-radius: 16px;
}

.category-card span,
.category-overview-body span {
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 850;
}

.category-card h3,
.category-overview-body h2 {
  margin: 7px 0 9px;
  color: var(--stone-800);
  font-size: 22px;
}

.category-card p,
.category-overview-body p {
  margin: 0;
  color: var(--stone-600);
  line-height: 1.65;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

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

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

.ranking-top {
  margin-bottom: 28px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 54px minmax(180px, 1fr) minmax(220px, 1.5fr) 70px;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: 16px;
}

.rank-row:hover {
  border-color: var(--amber-300);
  box-shadow: 0 12px 26px rgba(41, 37, 36, 0.08);
}

.rank-num {
  color: var(--amber-700);
  font-size: 20px;
  font-weight: 900;
}

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

.rank-row strong {
  color: var(--stone-800);
}

.rank-row em {
  color: var(--stone-500);
  font-style: normal;
}

.rank-row b {
  justify-self: end;
  color: white;
  background: var(--amber-600);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
}

.page-hero {
  padding: 46px;
  background: linear-gradient(135deg, white, var(--amber-100));
  border: 1px solid var(--amber-200);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  max-width: 840px;
  margin: 0 0 14px;
  color: var(--stone-800);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 850px;
  margin: 0;
  color: var(--stone-600);
  font-size: 17px;
  line-height: 1.8;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 18px;
  color: var(--stone-500);
  font-size: 14px;
}

.crumbs a {
  color: var(--amber-700);
  font-weight: 800;
}

.searchable-area {
  margin-top: 34px;
}

.filter-panel {
  flex-direction: column;
  margin-bottom: 24px;
  padding: 18px;
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(41, 37, 36, 0.06);
}

.search-wide input,
.filter-panel input {
  width: 100%;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-buttons button {
  color: #78350f;
  background: var(--amber-100);
}

.filter-buttons button.is-active,
.filter-buttons button:hover {
  color: white;
  background: var(--amber-600);
}

.empty-state {
  display: none;
  margin: 24px 0 0;
  padding: 22px;
  color: var(--stone-500);
  text-align: center;
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: 16px;
}

.empty-state.is-visible {
  display: block;
}

.detail-page {
  padding: 34px 0 20px;
}

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

.detail-main,
.detail-side {
  min-width: 0;
}

.player-card,
.content-card,
.side-box {
  overflow: hidden;
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: white;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.58));
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.player-shell.is-playing .player-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-circle {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  padding-left: 4px;
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  font-size: 31px;
}

.player-overlay strong {
  font-size: 20px;
}

.detail-info {
  padding: 28px;
}

.detail-info h1 {
  margin: 0 0 14px;
  color: var(--stone-800);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.detail-meta span {
  padding: 6px 12px;
  color: var(--stone-700);
  background: var(--stone-100);
  border-radius: 999px;
  font-weight: 750;
}

.detail-one-line {
  margin: 18px 0 0;
  color: var(--stone-600);
  font-size: 17px;
  line-height: 1.75;
}

.content-card {
  margin-top: 22px;
  padding: 28px;
}

.content-card h2,
.side-box h2 {
  margin: 0 0 16px;
  color: var(--stone-800);
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: var(--stone-700);
  font-size: 16px;
  line-height: 1.9;
  white-space: pre-line;
}

.review-card {
  background: linear-gradient(135deg, white, var(--amber-50));
}

.side-poster {
  position: sticky;
  top: 92px;
  display: block;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

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

.side-poster span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: white;
  background: rgba(217, 119, 6, 0.94);
  border-radius: 999px;
  font-weight: 850;
}

.side-box {
  padding: 20px;
}

.side-box p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--stone-200);
  color: var(--stone-600);
}

.side-box p:last-child {
  border-bottom: 0;
}

.side-box b {
  color: var(--stone-800);
}

.site-footer {
  margin-top: 72px;
  color: var(--stone-300);
  background: var(--stone-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  padding: 44px 0;
}

.footer-logo {
  color: var(--amber-100);
}

.footer-brand p {
  max-width: 560px;
  color: var(--stone-400);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--amber-100);
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: var(--stone-300);
}

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

.footer-bottom {
  padding: 18px 0 24px;
  color: var(--stone-500);
  text-align: center;
  border-top: 1px solid var(--stone-700);
}

.is-hidden {
  display: none !important;
}

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

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

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

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

  .side-poster {
    position: relative;
    top: auto;
  }
}

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

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    align-content: center;
    min-height: 720px;
    padding: 48px 0 84px;
  }

  .hero-poster {
    width: 210px;
    height: 290px;
  }

  .home-search-panel {
    grid-template-columns: 1fr;
  }

  .quick-search {
    flex-direction: column;
  }

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

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

  .rank-row {
    grid-template-columns: 42px 48px minmax(0, 1fr);
  }

  .rank-row em,
  .rank-row b {
    display: none;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .nav-wrap {
    height: 62px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-poster {
    width: 185px;
    height: 260px;
  }

  .home-search-panel,
  .page-hero,
  .content-card,
  .detail-info {
    padding: 22px;
  }

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

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

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

  .category-card img {
    width: 100%;
    height: 170px;
  }

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

  .play-circle {
    width: 62px;
    height: 62px;
    font-size: 25px;
  }
}
