:root {
  --sand-50: #faf7f0;
  --sand-100: #f2eadc;
  --sand-200: #e6d8c3;
  --sand-300: #d4bfa2;
  --sand-500: #9b7b58;
  --sand-600: #7a6046;
  --sand-700: #5f4a37;
  --sand-800: #3f3126;
  --sand-900: #231b16;
  --desert-50: #fff4df;
  --desert-100: #ffe5b6;
  --desert-300: #f5bd65;
  --desert-500: #d98a2b;
  --desert-600: #b86b1d;
  --desert-700: #8e4f18;
  --text: #211b17;
  --muted: #786a5d;
  --line: rgba(95, 74, 55, 0.16);
  --shadow: 0 18px 45px rgba(63, 49, 38, 0.16);
  --warm-shadow: 0 20px 50px rgba(184, 107, 29, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, var(--sand-50), #ffffff 46%, var(--sand-50));
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, var(--sand-700), var(--desert-700));
  color: var(--sand-50);
  box-shadow: 0 10px 25px rgba(35, 27, 22, 0.18);
}

.top-nav {
  max-width: 1220px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sand-900);
  background: linear-gradient(135deg, var(--desert-300), #fff0c8);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.brand-name {
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  display: none;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px 18px;
}

.mobile-menu.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-slider {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--sand-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.85s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 5s ease;
}

.hero-slide.is-active img {
  transform: scale(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(217, 138, 43, 0.28), transparent 38%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.46) 45%, rgba(0, 0, 0, 0.16));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 70px;
  width: min(1180px, calc(100% - 40px));
  transform: translateX(-50%);
  color: #ffffff;
}

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

.hero-content h1 {
  max-width: 860px;
  margin: 0 0 16px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.hero-summary {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2.2vw, 21px);
}

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

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

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--desert-600), var(--desert-500));
  box-shadow: 0 14px 28px rgba(184, 107, 29, 0.36);
}

.primary-btn.small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 14px;
}

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

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 40px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-arrow.prev {
  left: 22px;
}

.hero-arrow.next {
  right: 22px;
}

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

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

.hero-dot.is-active {
  width: 48px;
  background: var(--desert-300);
}

.main-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 52px 20px 72px;
}

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

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

.section-head h2,
.section-block h2,
.search-panel h2,
.text-card h2 {
  margin: 0;
  color: var(--sand-900);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.text-link {
  min-height: auto;
  padding: 0;
  color: var(--desert-700);
}

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

.feature-card {
  display: grid;
  grid-template-columns: minmax(160px, 44%) 1fr;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--warm-shadow);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card div {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.24;
}

.feature-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.category-block,
.ranking-block {
  margin-left: -20px;
  margin-right: -20px;
  padding: 46px 20px;
  border-radius: 32px;
}

.category-block {
  background: linear-gradient(135deg, var(--desert-50), #ffffff 58%, var(--sand-100));
}

.ranking-block {
  background: linear-gradient(135deg, var(--sand-100), #ffffff 56%, var(--desert-50));
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 22px;
  color: #ffffff;
  background: var(--sand-800);
  box-shadow: 0 12px 30px rgba(63, 49, 38, 0.18);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 0.45s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile span,
.category-tile p {
  position: relative;
  z-index: 1;
}

.category-tile span {
  display: block;
  padding: 108px 18px 8px;
  font-size: 22px;
  font-weight: 900;
}

.category-tile p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.search-panel {
  margin: 0 0 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(63, 49, 38, 0.08);
  backdrop-filter: blur(12px);
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 160px;
  gap: 14px;
  width: min(540px, 100%);
}

.filter-controls label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(95, 74, 55, 0.18);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--sand-900);
  background: #ffffff;
  outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
  border-color: var(--desert-500);
  box-shadow: 0 0 0 4px rgba(217, 138, 43, 0.12);
}

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(63, 49, 38, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand-100);
}

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 58%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

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

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

.movie-card:hover .poster-link::after {
  opacity: 1;
}

.year-badge,
.watch-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 800;
}

.year-badge {
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(184, 107, 29, 0.92);
  font-size: 12px;
}

.watch-badge {
  left: 50%;
  bottom: 14px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  white-space: nowrap;
}

.movie-card:hover .watch-badge {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

.movie-card h3 {
  margin: 0 0 8px;
  min-height: 2.7em;
  color: var(--sand-900);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card h3 a:hover,
.compact-info h3 a:hover,
.category-overview-card h2 a:hover {
  color: var(--desert-700);
}

.movie-meta,
.movie-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.movie-desc {
  display: -webkit-box;
  margin-top: 8px;
  min-height: 3.8em;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag-list span {
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--desert-700);
  background: var(--desert-50);
  font-size: 12px;
  font-weight: 700;
}

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

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

.compact-card {
  display: grid;
  grid-template-columns: auto 76px 1fr;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(63, 49, 38, 0.09);
}

.rank-num {
  width: 38px;
  color: var(--desert-600);
  font-size: 23px;
  font-weight: 900;
  text-align: center;
}

.rank-num.small {
  font-size: 17px;
}

.compact-poster {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  background: var(--sand-100);
}

.compact-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-info h3 {
  margin: 0 0 8px;
  color: var(--sand-900);
  font-size: 16px;
  line-height: 1.35;
}

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

.page-hero {
  background:
    radial-gradient(circle at 72% 20%, rgba(217, 138, 43, 0.32), transparent 34%),
    linear-gradient(135deg, var(--sand-800), var(--desert-700));
  color: #ffffff;
}

.page-hero > div {
  max-width: 1220px;
  margin: 0 auto;
  padding: 76px 20px;
}

.page-hero.compact > div {
  padding: 64px 20px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  border-radius: 28px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.category-cover {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 11;
  background: var(--sand-100);
}

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

.category-overview-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
}

.category-overview-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.category-overview-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--sand-700);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--desert-700);
}

.detail-shell {
  padding-top: 34px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  margin-bottom: 34px;
  border-radius: 30px;
  padding: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(217, 138, 43, 0.2), transparent 28%),
    #ffffff;
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  background: var(--sand-100);
  box-shadow: 0 18px 36px rgba(63, 49, 38, 0.18);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-copy h1 {
  margin: 0 0 16px;
  color: var(--sand-900);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  font-weight: 900;
}

.detail-one-line {
  margin: 0 0 22px;
  max-width: 780px;
  color: var(--sand-700);
  font-size: 19px;
}

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

.detail-meta span {
  border-radius: 12px;
  padding: 8px 12px;
  color: var(--sand-800);
  background: var(--sand-100);
  font-weight: 800;
}

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

.player-section {
  margin-bottom: 34px;
}

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

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

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.48));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--desert-600), var(--desert-500));
  box-shadow: 0 18px 36px rgba(184, 107, 29, 0.35);
}

.play-icon::before {
  content: "";
  display: block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 26px solid #ffffff;
}

.play-layer span:last-child {
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 54px;
}

.text-card {
  border-radius: 24px;
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.text-card h2 {
  margin-bottom: 16px;
  font-size: 25px;
}

.text-card p {
  margin: 0;
  color: var(--sand-700);
}

.text-card p + p {
  margin-top: 14px;
}

.lead-text {
  font-weight: 800;
}

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

.movie-card.related .movie-desc {
  display: none;
}

.movie-card.related .movie-card-body {
  padding: 13px;
}

.movie-card.related h3 {
  min-height: 2.6em;
  font-size: 15px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--sand-900);
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.footer-brand {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-inner p {
  max-width: 520px;
  margin: 0;
}

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

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

.footer-links a:hover {
  color: var(--desert-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  text-align: center;
  font-size: 14px;
}

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

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

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

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

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

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

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }

  .hero-content {
    bottom: 76px;
  }

  .hero-arrow {
    display: none;
  }

  .main-shell {
    padding-top: 36px;
  }

  .feature-grid,
  .search-panel,
  .detail-hero,
  .detail-content-grid,
  .footer-inner,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .search-panel {
    align-items: stretch;
  }

  .filter-controls {
    width: 100%;
    grid-template-columns: 1fr;
  }

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

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

  .detail-hero {
    padding: 20px;
  }

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

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

  .hero-slider {
    min-height: 480px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-summary {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

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

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

  .feature-card img {
    height: 220px;
  }

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

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

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

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

  .movie-desc,
  .tag-list {
    display: none;
  }

  .compact-card {
    grid-template-columns: auto 64px 1fr;
  }

  .page-hero > div {
    padding: 50px 14px;
  }

  .text-card,
  .player-section,
  .section-block {
    margin-bottom: 36px;
  }
}
