:root {
  --honey-50: #fff8ed;
  --honey-100: #fff0d1;
  --honey-300: #ffd875;
  --honey-500: #d4a574;
  --honey-600: #b98344;
  --flame-100: #ffe0b2;
  --flame-400: #ffa726;
  --flame-500: #ff6b35;
  --flame-600: #f4511e;
  --amber-400: #ffca28;
  --ink: #1f1309;
  --muted: #6c5b4c;
  --paper: #fffaf2;
  --card: #ffffff;
  --line: rgba(126, 76, 28, 0.15);
  --shadow: 0 20px 50px rgba(97, 52, 13, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 202, 40, 0.24), transparent 30rem),
    linear-gradient(180deg, #fff8ed 0%, #fffdf8 45%, #fff7eb 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--honey-600), var(--flame-500), var(--amber-400));
  box-shadow: 0 12px 36px rgba(143, 73, 17, 0.26);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff5dd;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  animation: flameFlicker 3s ease-in-out infinite;
}

@keyframes flameFlicker {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.82;
    transform: scale(0.96);
  }
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.88);
}

.main-nav a,
.nav-cats > button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.nav-cats:hover > button {
  color: #fff;
  transform: translateY(-1px);
}

.nav-cats {
  position: relative;
}

.nav-cats div {
  position: absolute;
  top: 42px;
  left: 50%;
  display: none;
  min-width: 170px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(55, 31, 10, 0.92);
  transform: translateX(-50%);
  box-shadow: var(--shadow);
}

.nav-cats:hover div {
  display: grid;
  gap: 8px;
}

.nav-cats div a {
  color: #fff7e1;
  padding: 7px 10px;
  border-radius: 10px;
}

.nav-cats div a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.top-search {
  width: 290px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.top-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: none;
  color: #fff;
  background: transparent;
  padding: 7px 10px;
}

.top-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.top-search button {
  border: 0;
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--ink);
  background: #fff6df;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #3a1706 0%, #a24011 46%, #f5a623 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.24), transparent 22rem),
    radial-gradient(circle at 80% 18%, rgba(255, 202, 40, 0.42), transparent 26rem);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.56fr);
  align-items: center;
  gap: 54px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 66px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.hero-slide::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(41, 16, 5, 0.92), rgba(77, 27, 5, 0.62), rgba(0, 0, 0, 0.34)),
    var(--hero-cover) center / cover no-repeat;
  filter: blur(18px) saturate(1.18);
  transform: scale(1.08);
  z-index: -1;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: #8f4d00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow,
.detail-hero .eyebrow,
.page-hero .eyebrow {
  color: #ffeab8;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  line-height: 1.08;
  font-size: clamp(38px, 6vw, 74px);
  letter-spacing: -0.05em;
}

.hero-desc,
.page-hero p,
.detail-one-line {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-actions,
.detail-info .btn {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 20px;
  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: #fff;
  background: linear-gradient(90deg, var(--flame-500), var(--amber-400));
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.btn-soft {
  color: var(--ink);
  background: rgba(255, 245, 218, 0.9);
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span,
.rank-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #7a3c09;
  background: #fff0d1;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span,
.detail-tags span {
  color: #fff8e5;
  background: rgba(255, 255, 255, 0.16);
}

.hero-poster {
  position: relative;
  width: min(360px, 100%);
  justify-self: end;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(35, 15, 4, 0.46);
  animation: floatPoster 6s ease-in-out infinite;
}

@keyframes floatPoster {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: linear-gradient(135deg, var(--honey-500), var(--flame-500));
}

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: #fff;
}

.section {
  padding: 70px 0;
}

.section-warm {
  background: linear-gradient(180deg, rgba(255, 240, 209, 0.72), rgba(255, 255, 255, 0));
}

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

.section-title h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
}

.section-link {
  color: var(--flame-600);
  font-weight: 800;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 190px 160px;
  gap: 14px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(143, 73, 17, 0.08);
}

.filter-bar label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid rgba(126, 76, 28, 0.18);
  border-radius: 16px;
  outline: none;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 14px 40px rgba(143, 73, 17, 0.09);
  transition: transform 0.22s ease, box-shadow 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, var(--honey-500), var(--flame-500));
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
}

.year-badge,
.play-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.year-badge {
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.play-badge {
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

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

.movie-card-small h3 {
  font-size: 15px;
}

.movie-meta {
  margin: 8px 0 0;
  color: var(--flame-600);
  font-size: 13px;
  font-weight: 800;
}

.movie-desc {
  min-height: 44px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.category-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(143, 73, 17, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

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

.category-thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--honey-500), var(--flame-500));
}

.category-card strong {
  font-size: 20px;
}

.category-card span,
.category-overview-card p {
  color: var(--muted);
}

.rank-panel {
  display: grid;
  gap: 12px;
}

.rank-row {
  display: grid;
  grid-template-columns: 64px 78px minmax(0, 1fr) 110px;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(143, 73, 17, 0.08);
}

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

.rank-cover img {
  width: 78px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--honey-500), var(--flame-500));
}

.rank-info h3 {
  margin: 0;
  font-size: 18px;
}

.rank-info p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.rank-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.rank-score {
  text-align: right;
}

.rank-score strong {
  display: block;
  color: var(--flame-600);
  font-size: 28px;
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.25), transparent 24rem),
    linear-gradient(135deg, #4a1d06, var(--flame-500), var(--amber-400));
  padding: 82px 0;
}

.page-hero h1 {
  max-width: 900px;
}

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

.breadcrumb a:hover {
  color: #fff;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(143, 73, 17, 0.09);
}

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

.category-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--honey-500), var(--flame-500));
}

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

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.mini-links a {
  border-radius: 999px;
  padding: 6px 10px;
  color: #7a3c09;
  background: #fff0d1;
  font-weight: 700;
  font-size: 13px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #2d1104;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--detail-cover) center / cover no-repeat;
  filter: blur(18px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.72;
}

.detail-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 13, 4, 0.94), rgba(80, 34, 8, 0.7), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 80% 10%, rgba(255, 202, 40, 0.36), transparent 24rem);
}

.detail-layout {
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  padding: 68px 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.44);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: linear-gradient(135deg, var(--honey-500), var(--flame-500));
}

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

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.detail-stats span {
  border-radius: 16px;
  padding: 9px 12px;
  color: #fff8e5;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.detail-stats strong {
  margin-right: 4px;
  color: var(--amber-400);
  font-size: 24px;
}

.detail-section {
  padding-top: 42px;
}

.player-card {
  overflow: hidden;
  border-radius: 30px;
  background: #080400;
  box-shadow: 0 24px 70px rgba(52, 22, 3, 0.28);
}

.movie-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050301;
}

.movie-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 0;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18)),
    rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-large {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--flame-500), var(--amber-400));
  box-shadow: 0 18px 36px rgba(255, 107, 53, 0.35);
  font-size: 32px;
}

.player-cover strong {
  font-size: 28px;
}

.player-cover em {
  color: #ffeab8;
  font-style: normal;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.story-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(143, 73, 17, 0.08);
}

.story-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.story-card p {
  margin: 0;
  color: var(--muted);
}

.info-card {
  grid-column: 1 / -1;
}

.info-card dl {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 10px 18px;
  margin: 0;
}

.info-card dt {
  color: var(--flame-600);
  font-weight: 900;
}

.info-card dd {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 40px;
  color: #ffe9bd;
  background: linear-gradient(135deg, #2a1004, #5a2107 60%, #8a3a0c);
  padding: 48px 0 24px;
}

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

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

.site-footer p {
  color: rgba(255, 233, 189, 0.76);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff7dd;
  background: rgba(255, 255, 255, 0.1);
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

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

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

@media (max-width: 820px) {
  .nav-shell {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 8px 0 12px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-cats div {
    position: static;
    display: grid;
    min-width: 0;
    margin-top: 8px;
    transform: none;
    background: rgba(255, 255, 255, 0.12);
  }

  .hero {
    min-height: 720px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 30px;
    align-content: center;
    padding: 46px 0 72px;
  }

  .hero-poster {
    justify-self: start;
    width: 230px;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

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

  .detail-poster {
    width: min(260px, 100%);
  }

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

@media (max-width: 620px) {
  .brand {
    font-size: 20px;
  }

  .section {
    padding: 48px 0;
  }

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

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

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

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

  .rank-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 13px;
  }

  .rank-cover img {
    width: 58px;
  }

  .rank-score {
    grid-column: 2 / -1;
    text-align: left;
  }

  .page-hero,
  .detail-layout {
    padding: 48px 0;
  }

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

  .play-large {
    width: 66px;
    height: 66px;
    font-size: 25px;
  }
}
