:root {
  --sand-50: #faf8f3;
  --sand-100: #f5f0e6;
  --sand-200: #e8ddc4;
  --sand-300: #dbc5a0;
  --sand-400: #c9a876;
  --sand-600: #a3744c;
  --sand-700: #885e40;
  --sand-800: #6f4d36;
  --sand-900: #5b4030;
  --desert-50: #fdf2e0;
  --desert-100: #fbe4bd;
  --desert-300: #f6cd9a;
  --desert-400: #f1b070;
  --desert-500: #ec944f;
  --desert-600: #d97935;
  --desert-700: #b5602a;
  --text: #3b2a20;
  --muted: #7b6557;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(91, 64, 48, 0.12);
  --warm-shadow: 0 18px 45px rgba(217, 121, 53, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--sand-50), #ffffff 40%, var(--sand-50));
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  min-height: 100vh;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--sand-700), var(--desert-700));
  color: var(--sand-50);
  box-shadow: 0 12px 25px rgba(91, 64, 48, 0.22);
}

.site-nav {
  max-width: 1280px;
  margin: 0 auto;
  height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--desert-400), var(--desert-600));
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(217, 121, 53, 0.28);
  font-size: 15px;
}

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

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--sand-100);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.header-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 310px;
}

.header-search input,
.mobile-search input,
.search-band input,
.filter-input,
.filter-select {
  width: 100%;
  border: 1px solid rgba(201, 168, 118, 0.38);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.header-search button,
.mobile-search button,
.search-band button,
.primary-btn,
.ghost-btn,
.section-more {
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search button,
.mobile-search button,
.search-band button,
.primary-btn {
  background: var(--desert-600);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(217, 121, 53, 0.26);
}

.header-search button:hover,
.mobile-search button:hover,
.search-band button:hover,
.primary-btn:hover {
  background: var(--desert-700);
  transform: translateY(-1px);
}

.primary-btn.full {
  width: 100%;
  text-align: center;
  display: block;
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.ghost-btn:hover {
  background: rgba(0, 0, 0, 0.32);
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  font-size: 22px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 24px 20px;
}

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

.mobile-links,
.mobile-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-cats a {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--sand-900);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.44) 45%, rgba(0, 0, 0, 0.06));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1280px, 100%);
  transform: translateX(-50%);
  padding: 0 32px 82px;
  color: #ffffff;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 121, 53, 0.92);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  margin: 0 0 18px;
  max-width: 880px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}

.hero-content p {
  max-width: 820px;
  margin: 0 0 22px;
  color: var(--sand-200);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.7;
}

.hero-tags,
.detail-meta,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-meta span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 700;
}

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

.hero-control {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.58);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.search-band,
.content-section,
.detail-layout {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.search-band {
  margin-top: -36px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.search-band h2,
.section-head h2,
.page-hero h1,
.detail-card h1,
.detail-card h2,
.side-card h2,
.footer-inner h2 {
  margin: 0;
  color: var(--sand-900);
}

.search-band p,
.section-head p,
.page-hero p,
.movie-info p,
.feature-body p,
.detail-card p,
.footer-inner p,
.category-tile p,
.ranking-card p {
  color: var(--muted);
  line-height: 1.7;
}

.search-band form {
  display: flex;
  gap: 10px;
}

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

.warm-section {
  width: min(1360px, calc(100% - 24px));
  margin-top: 78px;
  padding: 54px max(24px, calc((100% - 1280px) / 2));
  border-radius: 34px;
  background: linear-gradient(90deg, var(--desert-50), var(--sand-50));
}

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

.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
}

.section-more {
  display: inline-flex;
  color: var(--desert-700);
  background: var(--sand-100);
}

.section-more:hover {
  background: var(--sand-200);
  transform: translateY(-1px);
}

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

.feature-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.95fr) 1fr;
  min-height: 285px;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.movie-card:hover,
.category-tile:hover,
.mini-card:hover,
.ranking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--warm-shadow);
}

.feature-img,
.poster-wrap {
  position: relative;
  overflow: hidden;
  background: var(--sand-100);
}

.feature-img img,
.poster-wrap img,
.category-tile img,
.mini-card img,
.ranking-card img,
.rank-row img,
.poster-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feature-card:hover img,
.movie-card:hover img,
.category-tile:hover img,
.mini-card:hover img,
.ranking-card:hover img {
  transform: scale(1.08);
}

.feature-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-body h2,
.movie-info h2,
.category-tile h2,
.ranking-card h2 {
  margin: 0 0 10px;
  color: var(--sand-900);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.35;
}

.feature-body div,
.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.feature-body span,
.movie-meta span {
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--sand-100);
  color: var(--sand-700);
  font-size: 13px;
  font-weight: 700;
}

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

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

.movie-card {
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-link {
  display: block;
  height: 100%;
}

.poster-wrap {
  aspect-ratio: 4 / 5;
}

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 10px;
  padding: 6px 10px;
  background: var(--desert-600);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.movie-info {
  padding: 16px;
}

.movie-info h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
}

.movie-info p {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  margin: 0 0 12px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

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

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

.category-tile {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
}

.category-tile div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
}

.category-tile h2,
.category-tile p {
  color: #ffffff;
}

.category-tile p {
  margin: 8px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
}

.rank-list,
.mini-list {
  display: grid;
  gap: 12px;
}

.rank-row {
  display: grid;
  grid-template-columns: 46px 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.rank-row strong {
  color: var(--desert-600);
  font-size: 22px;
}

.rank-row img {
  width: 72px;
  height: 52px;
  border-radius: 12px;
}

.rank-row span {
  font-weight: 800;
  color: var(--sand-900);
}

.rank-row small,
.mini-card small {
  color: var(--muted);
}

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

.mini-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 100px;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-card img {
  grid-row: span 2;
  width: 86px;
  height: 80px;
  border-radius: 14px;
}

.mini-card span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--sand-900);
  font-weight: 800;
}

.page-hero,
.watch-head {
  background: linear-gradient(90deg, var(--sand-700), var(--desert-700));
  color: #ffffff;
}

.page-hero > div,
.watch-head > div {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--desert-300);
  font-weight: 900;
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
}

.page-hero p {
  max-width: 760px;
  color: var(--sand-100);
  font-size: 18px;
}

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

.breadcrumb.light {
  margin-bottom: 0;
  color: var(--sand-100);
}

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

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 160px 160px;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.empty-state {
  display: none;
  padding: 50px 20px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.all-list.filtered-empty + .empty-state,
.empty-state.visible {
  display: block;
}

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

.ranking-card {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-card a {
  display: grid;
  grid-template-columns: 64px 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
}

.ranking-card strong {
  color: var(--desert-600);
  font-size: 28px;
  text-align: center;
}

.ranking-card img {
  width: 110px;
  height: 82px;
  border-radius: 16px;
}

.ranking-card h2 {
  margin-bottom: 6px;
}

.ranking-card p {
  margin: 0 0 8px;
}

.ranking-card span {
  color: var(--sand-700);
  font-weight: 700;
}

.watch-head > div {
  padding: 22px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  padding: 34px 0 80px;
}

.detail-main,
.detail-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(217, 121, 53, 0.16), rgba(0, 0, 0, 0.52));
  cursor: pointer;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: var(--desert-600);
  box-shadow: 0 20px 50px rgba(217, 121, 53, 0.42);
  font-size: 34px;
  padding-left: 6px;
}

.watch-player.is-playing .play-overlay {
  display: none;
}

.player-message {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: none;
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.64);
  color: #ffffff;
  text-align: center;
}

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

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

.detail-card h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
}

.detail-meta {
  margin: 18px 0;
}

.detail-meta span,
.tag-cloud span {
  background: var(--sand-100);
  color: var(--sand-800);
}

.tag-cloud {
  margin-bottom: 24px;
}

.tag-cloud span {
  background: var(--desert-50);
  color: var(--desert-700);
}

.detail-card h2,
.side-card h2 {
  margin-top: 26px;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
}

.detail-card h2:first-of-type,
.side-card h2:first-child {
  margin-top: 0;
}

.detail-card p {
  margin: 0 0 16px;
  font-size: 17px;
}

.lead-text {
  color: var(--sand-900) !important;
  font-weight: 800;
}

.poster-side {
  padding: 0;
  overflow: hidden;
}

.poster-side img {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.poster-side .primary-btn {
  width: calc(100% - 32px);
  margin: 16px;
}

.site-footer {
  margin-top: 80px;
  background: linear-gradient(180deg, var(--sand-800), var(--sand-900));
  color: var(--sand-200);
}

.footer-inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

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

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

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

.footer-links a {
  color: var(--sand-300);
  font-weight: 650;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  color: var(--sand-400);
  text-align: center;
}

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

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

  .mobile-toggle {
    display: grid;
    place-items: center;
  }

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

  .feature-grid,
  .split-section,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-nav {
    height: 62px;
    padding: 0 16px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    display: none;
  }

  .hero-carousel {
    height: 74vh;
    min-height: 520px;
  }

  .hero-content {
    padding: 0 20px 74px;
  }

  .hero-control {
    display: none;
  }

  .hero-tags span {
    padding: 6px 9px;
    font-size: 13px;
  }

  .search-band,
  .search-band form,
  .feature-card,
  .filter-panel,
  .ranking-card a {
    grid-template-columns: 1fr;
  }

  .search-band {
    width: min(100% - 24px, 1280px);
    padding: 20px;
  }

  .content-section,
  .detail-layout {
    width: min(100% - 24px, 1280px);
    padding-top: 46px;
  }

  .warm-section {
    border-radius: 24px;
    padding: 36px 12px;
  }

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

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

  .feature-card {
    min-height: 0;
  }

  .feature-img {
    height: 230px;
  }

  .movie-info {
    padding: 13px;
  }

  .movie-info h2 {
    font-size: 16px;
  }

  .movie-info p {
    min-height: 42px;
    font-size: 13px;
  }

  .rank-row {
    grid-template-columns: 40px 62px 1fr;
  }

  .rank-row small {
    display: none;
  }

  .page-hero > div,
  .watch-head > div {
    width: min(100% - 24px, 1280px);
    padding: 42px 0;
  }

  .watch-head > div {
    padding: 18px 0;
  }

  .detail-layout {
    padding-bottom: 40px;
  }

  .detail-card,
  .side-card {
    padding: 20px;
  }

  .play-overlay span {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .footer-inner {
    width: min(100% - 24px, 1280px);
  }
}

@media (max-width: 460px) {
  .movie-grid,
  .movie-grid.three,
  .category-grid,
  .category-grid.large,
  .mini-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-actions a {
    text-align: center;
  }
}
