:root {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #fff7ed;
  --text: #111827;
  --muted: #64748b;
  --border: #e5e7eb;
  --brand: #dc2626;
  --brand-dark: #b91c1c;
  --accent: #f97316;
  --gold: #facc15;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong,
.footer-brand strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

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

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

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

.desktop-nav a:hover {
  color: var(--brand);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width 0.2s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-search,
.mobile-search,
.filter-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  overflow: hidden;
}

.header-search input,
.mobile-search input,
.filter-search input {
  width: 230px;
  border: 0;
  outline: 0;
  padding: 11px 14px 11px 18px;
  background: transparent;
  color: #111827;
}

.header-search button,
.mobile-search button,
.filter-search button {
  border: 0;
  cursor: pointer;
  padding: 11px 18px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #fff1f2;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  border-radius: 999px;
  background: var(--brand);
}

.mobile-panel {
  display: none;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 16px;
}

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

.mobile-search {
  margin-bottom: 14px;
}

.mobile-search input {
  width: 100%;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  padding: 11px 14px;
  border-radius: 14px;
  color: #334155;
  background: #f8fafc;
  font-weight: 800;
}

.mobile-cat {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mobile-cat a {
  padding: 7px 10px;
  border-radius: 999px;
  color: #9f1239;
  background: #fff1f2;
  font-size: 13px;
  font-weight: 800;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(250, 204, 21, 0.45), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, #b91c1c 0%, #ef4444 36%, #f97316 70%, #facc15 100%);
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(127, 29, 29, 0.42), transparent 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(127, 29, 29, 0.16));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 58px;
  padding: 72px 0;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.hero-copy h1 span {
  color: #fff7ad;
}

.hero-copy p {
  max-width: 660px;
  margin: 0 0 28px;
  color: #fff7ed;
  font-size: 19px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--brand);
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(127, 29, 29, 0.2);
}

.btn-primary:hover {
  background: #fff7ed;
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
}

.hero-stats span {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-categories a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff7ed;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.11);
}

.hero-frame {
  position: relative;
}

.hero-card {
  position: relative;
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(69, 10, 10, 0.35);
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 60%);
}

.hero-slide-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
}

.hero-slide-content span {
  display: inline-flex;
  padding: 5px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  color: #450a0a;
  background: #fef3c7;
}

.hero-slide-content h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.hero-slide-content p {
  margin: 0 0 18px;
  color: #e5e7eb;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: #ffffff;
}

.main-content {
  padding: 54px 0 68px;
}

.content-section {
  margin-bottom: 62px;
}

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

.section-kicker {
  display: inline-flex;
  color: var(--brand);
  font-weight: 950;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 8px 0 0;
  max-width: 680px;
  color: var(--muted);
}

.section-link {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: var(--brand);
  font-weight: 900;
}

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.86);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 113, 113, 0.45);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.15);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #ffedd5);
  aspect-ratio: 2 / 3;
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease, filter 0.32s ease;
}

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.poster-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(220, 38, 38, 0.92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--brand);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.movie-card h3 a:hover {
  color: var(--brand);
}

.movie-card p {
  min-height: 48px;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 14px;
}

.tag-row,
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span,
.footer-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border-radius: 999px;
  color: #9f1239;
  background: #fff1f2;
  font-size: 12px;
  font-weight: 800;
}

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

.category-card {
  position: relative;
  display: block;
  min-height: 178px;
  padding: 22px;
  overflow: hidden;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #dc2626, #f97316);
  box-shadow: 0 18px 38px rgba(220, 38, 38, 0.18);
}

.category-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.category-card strong {
  display: block;
  position: relative;
  z-index: 2;
  font-size: 24px;
  margin-bottom: 8px;
}

.category-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  color: #fff7ed;
  font-size: 14px;
}

.category-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  font-weight: 900;
}

.rank-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.rank-feature {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 28px;
  color: #ffffff;
  background: #111827;
  box-shadow: var(--shadow);
}

.rank-feature img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.rank-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

.rank-feature-content {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
}

.rank-feature-content h3 {
  margin: 0 0 8px;
  font-size: 30px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 54px 88px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.rank-no {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.rank-thumb {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 2 / 3;
  background: #fee2e2;
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.page-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 8%, rgba(250, 204, 21, 0.32), transparent 25%),
    linear-gradient(135deg, #991b1b, #ef4444 48%, #f97316);
  padding: 62px 0;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: #fff7ed;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #ffedd5;
  font-size: 14px;
  font-weight: 800;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  margin-bottom: 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-actions button,
.filter-actions a,
.filter-select {
  min-height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 14px;
  color: #334155;
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.filter-actions button.is-active,
.filter-actions a:hover {
  color: #ffffff;
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.empty-state {
  display: none;
  padding: 40px;
  text-align: center;
  color: var(--muted);
  border-radius: 22px;
  background: #ffffff;
  border: 1px dashed #fca5a5;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 360px;
  gap: 30px;
  align-items: start;
}

.player-card,
.detail-card,
.side-card {
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.player-wrap video {
  width: 100%;
  height: 100%;
  background: #030712;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.72));
  transition: opacity 0.25s ease;
}

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

.player-cover span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  color: var(--brand);
  font-size: 42px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.player-cover strong {
  position: absolute;
  margin-top: 126px;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.player-message {
  display: none;
  padding: 12px 18px;
  color: #991b1b;
  background: #fff1f2;
  font-weight: 800;
}

.player-message.is-visible {
  display: block;
}

.player-info {
  padding: 22px;
}

.player-info h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.16;
}

.info-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.info-line span {
  padding: 5px 10px;
  border-radius: 999px;
  color: #9f1239;
  background: #fff1f2;
  font-weight: 900;
  font-size: 13px;
}

.detail-card {
  padding: 24px;
  margin-top: 24px;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-card p {
  margin: 0 0 16px;
  color: #374151;
}

.side-card {
  padding: 18px;
}

.poster-large {
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 18px;
  background: #fee2e2;
}

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

.side-meta {
  display: grid;
  gap: 10px;
}

.side-meta div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
  color: var(--muted);
}

.side-meta strong {
  color: #111827;
}

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

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

.compact .movie-card-body {
  padding: 14px;
}

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

.compact p {
  display: none;
}

.site-footer {
  color: #cbd5e1;
  background: #111827;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 48px 0;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

.site-footer p {
  margin: 14px 0 0;
  color: #cbd5e1;
}

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

.site-footer a:hover {
  color: #fb7185;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero-inner,
  .rank-panel,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

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

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

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

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

  .header-inner {
    height: 64px;
  }

  .brand-text small {
    display: none;
  }

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

  .hero-inner {
    padding: 42px 0;
    gap: 32px;
  }

  .hero-card,
  .hero-slide img {
    min-height: 360px;
  }

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

  .section-head,
  .footer-bottom {
    display: block;
  }

  .section-link {
    margin-top: 12px;
  }

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

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

  .rank-no {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .filter-bar {
    align-items: stretch;
  }

  .filter-search {
    width: 100%;
  }

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

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

@media (max-width: 500px) {
  .library-grid,
  .movie-grid,
  .related-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

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

  .player-cover span {
    width: 72px;
    height: 72px;
    font-size: 32px;
  }

  .player-cover strong {
    margin-top: 104px;
  }
}
