:root {
  --bg: #050505;
  --panel: #111111;
  --panel-soft: #181818;
  --text: #f7f7f7;
  --muted: #a3a3a3;
  --muted-2: #737373;
  --line: rgba(251, 146, 60, 0.18);
  --orange: #f97316;
  --orange-soft: #fb923c;
  --orange-dark: #7c2d12;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 34rem),
    linear-gradient(180deg, #050505 0%, #0d0d0d 40%, #050505 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(124, 45, 18, 0.42);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(124, 45, 18, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1220px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #0b0b0b;
  background: linear-gradient(135deg, var(--orange), #fed7aa);
  box-shadow: 0 0 34px rgba(249, 115, 22, 0.46);
}

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

.brand-text strong,
.footer-logo {
  color: var(--orange);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 999px;
  color: #d4d4d4;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-current {
  color: #fff7ed;
  background: rgba(249, 115, 22, 0.16);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(310px, 28vw);
}

.header-search input,
.mobile-panel input,
.hero-search input,
.filter-panel input {
  width: 100%;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  outline: none;
  color: #fff;
  background: rgba(31, 31, 31, 0.78);
  transition: border 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.header-search input:focus,
.mobile-panel input:focus,
.hero-search input:focus,
.filter-panel input:focus {
  border-color: rgba(249, 115, 22, 0.65);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
  background: rgba(24, 24, 24, 0.95);
}

.header-search button,
.mobile-panel button,
.hero-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #111;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), #fdba74);
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.24);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 14px;
  background: rgba(31, 31, 31, 0.72);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--orange-soft);
}

.mobile-panel {
  display: none;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 16px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 20px;
  background: rgba(15, 15, 15, 0.96);
}

.mobile-panel form {
  display: flex;
  gap: 10px;
}

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mobile-panel a {
  padding: 12px;
  border-radius: 14px;
  color: #e5e5e5;
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #050505;
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 0.8s ease, transform 1.4s ease;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(1.1) contrast(1.04);
}

.hero-shade {
  background:
    radial-gradient(circle at 70% 30%, rgba(249, 115, 22, 0.25), transparent 28rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(0deg, #050505 0%, transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 56px;
  width: min(1180px, calc(100% - 32px));
  min-height: 690px;
  margin: 0 auto;
  padding: 86px 0 110px;
}

.eyebrow,
.section-kicker,
.category-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--orange-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.rank-hero h1,
.detail-info h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
}

.hero-lead,
.page-hero p,
.rank-hero p,
.detail-one-line {
  max-width: 760px;
  margin: 24px 0 0;
  color: #e5e5e5;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-tags,
.tag-row,
.detail-meta,
.hero-category-links,
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span,
.filter-chips button,
.hero-category-links a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  color: #fed7aa;
  background: rgba(0, 0, 0, 0.34);
}

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

.btn-primary,
.btn-secondary,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--orange), #fed7aa);
  box-shadow: 0 20px 42px rgba(249, 115, 22, 0.34);
}

.btn-secondary,
.section-more {
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #fff7ed;
  background: rgba(0, 0, 0, 0.45);
}

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

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 30px;
  background: #171717;
  box-shadow: var(--shadow), 0 0 0 8px rgba(249, 115, 22, 0.06);
}

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

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 8px 13px;
  color: #111;
  font-weight: 800;
  background: #fed7aa;
}

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

.hero-dots button {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 54px;
  background: var(--orange);
}

.quick-search-section {
  margin-top: -46px;
  position: relative;
  z-index: 7;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-search input {
  padding: 14px 18px;
}

.hero-category-links {
  margin-top: 18px;
}

.hero-category-links a:hover,
.filter-chips button:hover,
.filter-chips button.is-active {
  color: #111;
  background: var(--orange-soft);
}

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

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

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

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: var(--radius-md);
  padding: 22px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
  transition: transform 0.28s ease, border 0.28s ease, box-shadow 0.28s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.58);
  box-shadow: 0 26px 56px rgba(249, 115, 22, 0.12);
}

.category-tile strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
}

.category-tile p {
  margin: 12px 0 0;
  color: #d4d4d4;
  font-size: 14px;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.82), rgba(10, 10, 10, 0.96));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, border 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(249, 115, 22, 0.46);
  box-shadow: 0 26px 64px rgba(249, 115, 22, 0.12);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #141414;
}

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

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
}

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

.type-badge {
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  color: #fff7ed;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}

.rank-badge {
  left: 10px;
  top: 10px;
  padding: 7px 10px;
  color: #111;
  background: linear-gradient(135deg, #fdba74, var(--orange));
}

.card-body {
  padding: 16px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--orange-soft);
  font-size: 12px;
  font-weight: 700;
}

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

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

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

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

.tag-row span {
  padding: 4px 8px;
  color: #fdba74;
  font-size: 12px;
}

.ranking-section {
  background: radial-gradient(circle at 85% 12%, rgba(249, 115, 22, 0.18), transparent 28rem);
}

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

.movie-card-compact {
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 178px;
}

.movie-card-compact .poster-link img {
  height: 100%;
  min-height: 178px;
}

.movie-card-compact .card-body {
  align-self: center;
}

.page-hero,
.rank-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.page-hero {
  padding: 112px 0 72px;
  border-bottom: 1px solid rgba(249, 115, 22, 0.14);
}

.compact-hero {
  background:
    radial-gradient(circle at 72% 20%, rgba(249, 115, 22, 0.2), transparent 26rem),
    linear-gradient(135deg, #050505, #171717 54%, #431407);
}

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

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

.filter-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid rgba(249, 115, 22, 0.16);
  border-radius: 22px;
  background: rgba(18, 18, 18, 0.86);
}

.filter-panel input {
  padding: 14px 18px;
}

.filter-chips button {
  color: #fed7aa;
}

.empty-state {
  margin: 16px 0 24px;
  padding: 18px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.rank-hero {
  min-height: 520px;
}

.rank-hero img,
.rank-hero-overlay,
.detail-backdrop,
.detail-overlay {
  position: absolute;
  inset: 0;
}

.rank-hero img,
.detail-backdrop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.rank-hero-overlay,
.detail-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.5)),
    linear-gradient(0deg, #050505, transparent 58%);
}

.rank-hero-content {
  position: relative;
  z-index: 2;
  padding: 128px 0 96px;
}

.detail-hero {
  min-height: 560px;
}

.detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: center;
  padding: 92px 0 72px;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

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

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

.detail-meta span {
  color: #fff7ed;
}

.detail-content {
  padding-top: 36px;
}

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

.player-card,
.side-panel,
.article-block {
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 17, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.video-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #000;
}

.video-box video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.play-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle, rgba(249, 115, 22, 0.26), rgba(0, 0, 0, 0.58)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.2));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: #111;
  font-size: 32px;
  background: linear-gradient(135deg, var(--orange), #fed7aa);
  box-shadow: 0 0 44px rgba(249, 115, 22, 0.52);
}

.play-layer strong {
  font-size: 22px;
}

.article-block {
  margin: 22px;
  padding: 26px;
}

.article-block h2,
.side-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.article-block p {
  margin: 0 0 22px;
  color: #d4d4d4;
  font-size: 16px;
}

.side-panel {
  align-self: start;
  padding: 20px;
  position: sticky;
  top: 96px;
}

.side-list {
  display: grid;
  gap: 14px;
}

.side-list a {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s ease, transform 0.25s ease;
}

.side-list a:hover {
  background: rgba(249, 115, 22, 0.13);
  transform: translateX(3px);
}

.side-list img {
  width: 74px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
}

.side-list strong,
.side-list em {
  display: block;
}

.side-list em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

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

.site-footer {
  border-top: 1px solid rgba(249, 115, 22, 0.16);
  background: #050505;
}

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

.footer-inner p {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--muted);
}

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

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #d4d4d4;
  background: rgba(255, 255, 255, 0.04);
}

.footer-links a:hover {
  color: #111;
  background: var(--orange-soft);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--muted-2);
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

  .header-search {
    width: min(360px, 44vw);
  }

  .menu-toggle {
    display: block;
  }

  body.menu-open .mobile-panel {
    display: block;
  }

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

  .hero-poster {
    display: none;
  }

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

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

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

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

  .side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 66px;
  }

  .brand-text em,
  .header-search {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    min-height: 600px;
    padding: 70px 0 92px;
  }

  .hero h1,
  .page-hero h1,
  .rank-hero h1,
  .detail-info h1 {
    letter-spacing: -0.04em;
  }

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

  .section-heading {
    display: block;
  }

  .section-more {
    margin-top: 18px;
  }

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

  .movie-card-compact {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 500px) {
  .container,
  .header-inner,
  .mobile-panel,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .brand-text strong {
    font-size: 18px;
  }

  .hero-lead,
  .page-hero p,
  .rank-hero p,
  .detail-one-line {
    font-size: 16px;
  }

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

  .category-grid,
  .category-grid.large,
  .movie-grid,
  .ranking-strip,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-block {
    margin: 14px;
    padding: 18px;
  }

  .play-circle {
    width: 68px;
    height: 68px;
  }
}
