:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --rose: #e11d48;
  --pink: #db2777;
  --blue: #0284c7;
  --cyan: #06b6d4;
  --green: #059669;
  --text: #111827;
  --muted: #6b7280;
  --soft: #f8fafc;
  --line: #e5e7eb;
  --card: #ffffff;
  --dark: #111827;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #f97316 0%, #ef4444 48%, #ec4899 100%);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.25s ease;
}

.brand:hover {
  transform: scale(1.04);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: var(--primary);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

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

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

.nav-link {
  padding: 9px 11px;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
}

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

.header-search {
  width: min(310px, 31vw);
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.header-search input,
.mobile-search input,
.hero-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: #ffffff;
}

.header-search input {
  flex: 1;
  padding: 9px 13px;
  border-radius: 999px;
}

.header-search button,
.mobile-search button,
.hero-search button,
.primary-button,
.ghost-button {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button {
  padding: 9px 13px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.35);
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(17, 24, 39, 0.18);
}

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

.mobile-panel-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 18px;
  display: grid;
  gap: 8px;
}

.mobile-search {
  padding-top: 6px;
}

.mobile-search input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
}

.mobile-search button {
  padding: 12px 16px;
  color: #ffffff;
  background: var(--dark);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316 0%, #ef4444 52%, #db2777 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.18));
}

.hero-container {
  position: relative;
  padding: 82px 0 54px;
}

.hero-slider {
  position: relative;
  min-height: 430px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: 52px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 800;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
}

.hero-text h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  line-height: 1.08;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hero-text p {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-tags,
.detail-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.hero-tags span,
.detail-tags a,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  padding: 7px 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.primary-button {
  color: var(--primary-dark);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.2);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-poster {
  position: relative;
  display: block;
  width: min(360px, 100%);
  margin-left: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06));
  box-shadow: 0 35px 80px rgba(17, 24, 39, 0.32);
  transform: rotate(2deg);
}

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

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(17, 24, 39, 0.55));
}

.hero-poster span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-control-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero-dot.active {
  width: 34px;
  background: #ffffff;
}

.hero-search {
  width: min(470px, 100%);
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(18px);
}

.hero-search input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 999px;
}

.hero-search button {
  padding: 13px 18px;
  color: #ffffff;
  background: var(--dark);
}

.stats-strip {
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

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

.stat-card {
  display: grid;
  gap: 4px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.stat-card span {
  font-size: 28px;
}

.stat-card strong {
  font-size: 30px;
  line-height: 1;
}

.stat-card em {
  font-style: normal;
  color: var(--muted);
}

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

.soft-blue {
  background: linear-gradient(135deg, #eff6ff 0%, #ecfeff 100%);
}

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

.section-heading h2,
.ranking-title h2,
.text-panel h2,
.source-card h2 {
  margin: 0;
  line-height: 1.15;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-link,
.ranking-title a {
  font-weight: 800;
  color: var(--primary-dark);
}

.movie-grid {
  display: grid;
  gap: 18px;
}

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

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

.movie-card {
  min-width: 0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

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

.poster-box {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fb7185);
}

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

.movie-card:hover .poster-box img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(17, 24, 39, 0.48);
  transition: opacity 0.25s ease;
}

.poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-shade,
.movie-card:hover .poster-play {
  opacity: 1;
}

.movie-card:hover .poster-play {
  transform: translate(-50%, -50%) scale(1);
}

.poster-label,
.poster-year {
  position: absolute;
  top: 10px;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
}

.poster-label {
  left: 10px;
  background: linear-gradient(90deg, #f97316, #ef4444);
}

.poster-year {
  right: 10px;
  background: rgba(17, 24, 39, 0.72);
}

.card-body {
  padding: 14px;
}

.card-body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.card-meta {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  color: #9ca3af;
  font-size: 12px;
}

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

.tag-row span {
  padding: 4px 7px;
  color: #9a3412;
  background: #ffedd5;
}

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

.category-tile,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 26px;
  border-radius: 24px;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-tile span,
.category-overview-card span {
  font-size: 32px;
}

.category-tile strong,
.category-overview-card h2 {
  display: block;
  margin-top: 16px;
  font-size: 23px;
  font-weight: 900;
}

.category-tile em,
.category-overview-card strong {
  display: block;
  margin-top: 4px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.86);
}

.category-overview-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.orange {
  background: linear-gradient(135deg, #fb923c, #ef4444);
}

.pink {
  background: linear-gradient(135deg, #f472b6, #e11d48);
}

.red {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.blue {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
}

.green {
  background: linear-gradient(135deg, #34d399, #0f766e);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.ranking-panel,
.source-card,
.text-panel,
.filter-panel {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.ranking-panel {
  padding: 22px;
  position: sticky;
  top: 90px;
}

.ranking-panel.large {
  position: static;
}

.ranking-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ranking-title span {
  color: var(--muted);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 42px 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: #f9fafb;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  transform: translateX(3px);
  background: #fff7ed;
}

.rank-number {
  font-weight: 950;
  font-size: 20px;
  color: var(--primary);
}

.rank-row img {
  width: 52px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, #fed7aa, #fb7185);
}

.rank-info {
  min-width: 0;
}

.rank-info strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-info em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.page-hero {
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ef4444 48%, #db2777);
}

.compact-hero {
  padding: 78px 0;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 22px;
}

.filter-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.filter-title strong {
  font-size: 20px;
}

.filter-title span {
  color: var(--muted);
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 14px;
}

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

.filter-grid input,
.filter-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  color: var(--text);
  background: #ffffff;
  outline: none;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.empty-state {
  margin-top: 20px;
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
}

.ranking-page-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  filter: blur(16px);
  transform: scale(1.08);
}

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.85), rgba(225, 29, 72, 0.82));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 72px 0;
}

.detail-poster {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #fed7aa, #fb7185);
  box-shadow: 0 28px 65px rgba(17, 24, 39, 0.35);
}

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

.detail-copy p {
  max-width: 800px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.14);
}

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

.detail-tags a {
  padding: 6px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.detail-copy .primary-button {
  margin-top: 28px;
}

.watch-section {
  background: #0f172a;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.36);
  aspect-ratio: 16 / 9;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  border: 0;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.64));
}

.play-overlay.hidden {
  display: none;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 4px;
  border-radius: 999px;
  color: var(--primary);
  font-size: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.play-overlay strong {
  font-size: 24px;
}

.play-overlay em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.75);
}

.player-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(220, 38, 38, 0.86);
}

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

.source-card {
  padding: 24px;
}

.source-card p,
.source-card li {
  color: var(--muted);
}

.source-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

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

.text-panel {
  padding: 28px;
}

.text-panel p {
  margin: 14px 0 0;
  color: #374151;
  font-size: 16px;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 28px;
  padding: 46px 0;
}

.footer-logo {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 16px;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #d1d5db;
}

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

.footer-bottom {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #9ca3af;
}

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

  .split-layout,
  .ranking-page-layout,
  .watch-layout {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-poster {
    width: min(240px, 74vw);
    margin: 0;
  }

  .hero-control-row {
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

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

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

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

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

  .hero-container {
    padding-top: 48px;
  }

  .hero-section {
    min-height: 760px;
  }

  .hero-text h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 36px;
  }

  .hero-search,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
  }

  .hero-search input,
  .hero-search button {
    width: 100%;
    border-radius: 14px;
  }

  .stats-grid,
  .category-grid,
  .category-overview-grid,
  .home-grid,
  .listing-grid,
  .compact-grid,
  .related-grid,
  .footer-grid,
  .filter-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    display: block;
  }

  .section-link {
    display: inline-block;
    margin-top: 10px;
  }
}
