:root {
  --amber-950: #451a03;
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --yellow-600: #ca8a04;
  --yellow-500: #eab308;
  --yellow-300: #fde047;
  --yellow-100: #fef9c3;
  --cream: #fff7ed;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --line: #f3e8c8;
  --shadow: 0 18px 45px rgba(120, 53, 15, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0%, #fff 44%, #fffbeb 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--amber-900), var(--amber-800), var(--amber-900));
  box-shadow: 0 12px 30px rgba(69, 26, 3, 0.24);
}

.nav-shell {
  width: min(1280px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fffbeb;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--amber-950);
  background: linear-gradient(135deg, var(--yellow-300), var(--yellow-500));
  box-shadow: 0 8px 24px rgba(234, 179, 8, 0.35);
  font-size: 14px;
}

.brand-text {
  font-size: 22px;
}

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

.nav-link {
  color: rgba(255, 251, 235, 0.9);
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(161, 98, 7, 0.58);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-search,
.mobile-search,
.wide-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-search input,
.mobile-search input,
.wide-search input,
.filter-row input,
.filter-row select,
.rank-toolbar select {
  border: 1px solid rgba(202, 138, 4, 0.38);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 11px 14px;
  outline: none;
  color: var(--ink);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.quick-search input {
  width: 220px;
}

.quick-search input:focus,
.mobile-search input:focus,
.wide-search input:focus,
.filter-row input:focus,
.filter-row select:focus,
.rank-toolbar select:focus {
  border-color: var(--yellow-500);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.18);
}

.quick-search button,
.mobile-search button,
.wide-search button {
  border: 0;
  border-radius: 12px;
  padding: 11px 16px;
  color: #fff;
  background: var(--yellow-600);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.quick-search button:hover,
.mobile-search button:hover,
.wide-search button:hover {
  background: var(--yellow-500);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid rgba(253, 224, 71, 0.25);
}

.mobile-menu.is-open {
  display: grid;
  gap: 10px;
}

.mobile-link {
  color: #fffbeb;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--amber-900), var(--amber-800), var(--amber-900));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transition: opacity 0.7s ease, transform 5s ease;
  transform: scale(1.02);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.86)), linear-gradient(90deg, rgba(69, 26, 3, 0.8), rgba(69, 26, 3, 0.36), rgba(0, 0, 0, 0.24));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 84px;
  color: #fff;
  max-width: 1280px;
}

.hero-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--yellow-300);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-label::before,
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow-300);
}

.hero h1,
.hero h2 {
  width: min(720px, 100%);
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.hero p {
  width: min(680px, 100%);
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-meta span,
.detail-meta span,
.card-meta span {
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
  font-size: 13px;
}

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

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

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

.btn-primary {
  color: #fff;
  background: var(--yellow-600);
  box-shadow: 0 12px 30px rgba(202, 138, 4, 0.34);
}

.btn-primary:hover {
  background: var(--yellow-500);
}

.btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.full-btn {
  width: 100%;
  margin-top: 14px;
}

.hero-control {
  position: absolute;
  right: max(24px, calc((100% - 1280px) / 2));
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 28px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

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

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

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

.search-band {
  transform: translateY(-36px);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 560px);
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.search-band h2,
.section-head h2,
.page-hero h1,
.detail-card h1 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.18;
}

.search-band h2,
.section-head h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.wide-search input {
  flex: 1;
  min-width: 0;
}

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

.alt-section {
  border-top: 1px solid var(--line);
}

.warm-section,
.category-section,
.rank-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1280px) / 2));
  padding-right: max(16px, calc((100% - 1280px) / 2));
}

.warm-section {
  background: linear-gradient(135deg, #fef9c3, #fff7ed 52%, #fffbeb);
}

.rank-section {
  background: linear-gradient(90deg, #78350f, #92400e, #78350f);
}

.rank-section .section-head h2,
.rank-section .section-head .eyebrow,
.rank-section .section-more {
  color: #fff;
}

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

.section-more {
  color: var(--amber-700);
  font-weight: 800;
}

.section-more:hover {
  color: var(--yellow-600);
}

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

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

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

.category-grid,
.search-grid {
  padding-top: 24px;
}

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(243, 232, 200, 0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(120, 53, 15, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(120, 53, 15, 0.18);
}

.movie-card figure {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: var(--amber-900);
}

.poster-card figure {
  aspect-ratio: 2 / 3;
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover img,
.compact-card:hover img,
.rank-item:hover img {
  transform: scale(1.08);
}

.card-badge,
.card-time {
  position: absolute;
  top: 10px;
  border-radius: 999px;
  padding: 4px 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(202, 138, 4, 0.92);
}

.card-badge {
  left: 10px;
}

.card-time {
  right: 10px;
  background: rgba(0, 0, 0, 0.62);
}

.card-body {
  padding: 15px;
}

.card-body h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.card-tags span,
.tag-row a {
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--amber-800);
  background: var(--yellow-100);
  font-size: 12px;
  font-weight: 700;
}

.card-meta span {
  background: #fff7ed;
  color: #7c2d12;
}

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

.category-chip,
.category-card {
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #fff, #fff7ed);
  border: 1px solid rgba(243, 232, 200, 0.9);
  box-shadow: 0 10px 28px rgba(120, 53, 15, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-chip span,
.category-card h2 {
  display: block;
  margin: 0 0 8px;
  color: var(--amber-900);
  font-size: 22px;
  font-weight: 900;
}

.category-chip em,
.category-card p {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.category-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.category-card li a {
  color: #7c2d12;
  font-size: 14px;
}

.category-card li a:hover {
  color: var(--yellow-600);
}

.page-hero {
  padding: 82px max(16px, calc((100% - 1280px) / 2));
  background: radial-gradient(circle at 20% 20%, rgba(253, 224, 71, 0.25), transparent 34%), linear-gradient(90deg, var(--amber-900), var(--amber-800), var(--amber-900));
  color: #fff;
}

.page-hero > div {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 16px;
}

.page-hero p {
  width: min(760px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.filter-panel {
  padding: 46px 0 70px;
}

.filter-row,
.rank-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.filter-row input {
  flex: 1;
  min-width: 260px;
}

.filter-row select,
.rank-toolbar select {
  min-width: 150px;
}

.rank-toolbar {
  justify-content: flex-end;
  margin-bottom: 22px;
}

.rank-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.rank-item a {
  display: grid;
  grid-template-columns: 52px 110px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 16px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 22px rgba(120, 53, 15, 0.08);
  overflow: hidden;
}

.rank-number {
  color: var(--yellow-600);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.rank-item img {
  width: 110px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.rank-content h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-content p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-content div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #92400e;
  font-size: 13px;
}

.detail-page {
  padding: 34px 0 72px;
}

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

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

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

.detail-main {
  display: grid;
  gap: 22px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.player-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.48));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(202, 138, 4, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  font-size: 34px;
  padding-left: 6px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.player-overlay:hover span {
  transform: scale(1.08);
  background: var(--yellow-500);
}

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

.player-error {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.68);
}

.detail-card,
.poster-box,
.related-box {
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-card h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

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

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

.lead-text {
  margin: 0 0 18px;
  color: #374151;
  font-size: 18px;
  font-weight: 600;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.detail-card h2,
.related-box h2 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.detail-card p {
  margin: 0 0 16px;
  color: #374151;
  font-size: 16px;
  line-height: 1.85;
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}

.poster-box img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.related-box h2 {
  margin-top: 0;
}

.related-list {
  display: grid;
  gap: 12px;
}

.compact-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 12px;
  padding: 9px;
  transition: background 0.2s ease;
}

.compact-card:hover {
  background: #fff7ed;
}

.compact-card img {
  width: 112px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.compact-card h3 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-card p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-card span {
  color: #92400e;
  font-size: 12px;
}

.site-footer {
  color: rgba(255, 251, 235, 0.86);
  background: linear-gradient(180deg, var(--amber-950), var(--amber-900));
}

.footer-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) 2fr;
  gap: 36px;
}

.footer-brand p {
  width: min(460px, 100%);
  margin: 16px 0 0;
  color: rgba(255, 251, 235, 0.72);
}

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

.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--yellow-300);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 251, 235, 0.76);
  font-size: 14px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(253, 224, 71, 0.18);
  padding: 18px 16px;
  text-align: center;
  color: rgba(255, 251, 235, 0.68);
  font-size: 14px;
}

[data-card].is-hidden,
[data-rank-card].is-hidden {
  display: none;
}

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

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

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

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

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

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

  .detail-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    height: 64px;
  }

  .brand-text {
    font-size: 19px;
  }

  .hero {
    height: 560px;
  }

  .hero-content {
    padding-bottom: 96px;
  }

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

  .hero-actions,
  .hero-meta {
    gap: 10px;
  }

  .hero-control {
    left: 16px;
    right: auto;
  }

  .search-band {
    grid-template-columns: 1fr;
    transform: none;
    margin-top: 20px;
  }

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

  .movie-grid,
  .four-grid,
  .poster-grid,
  .category-chip-grid,
  .category-overview-grid,
  .home-rank {
    grid-template-columns: 1fr 1fr;
  }

  .rank-item a {
    grid-template-columns: 42px 92px 1fr;
  }

  .rank-item img {
    width: 92px;
  }

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

  .filter-row input,
  .filter-row select {
    width: 100%;
    min-width: 0;
  }

  .detail-card,
  .poster-box,
  .related-box {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .movie-grid,
  .four-grid,
  .poster-grid,
  .category-chip-grid,
  .category-overview-grid,
  .home-rank {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .hero h2 {
    font-size: 32px;
  }

  .btn {
    width: 100%;
  }

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

  .compact-card img {
    width: 96px;
  }
}
