:root {
  --bg: #0f1419;
  --bg-soft: #111827;
  --surface: rgba(15, 23, 42, 0.62);
  --surface-strong: rgba(15, 23, 42, 0.86);
  --border: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --silver: #e8e8e8;
  --accent: #f8fafc;
  --danger: #ef4444;
  --gold: #fbbf24;
  --radius: 1rem;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
  --gradient-moonlight: radial-gradient(circle at 15% 15%, rgba(148, 163, 184, 0.14), transparent 30%), radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.08), transparent 28%), linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--gradient-moonlight);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.12), rgba(15, 20, 25, 0.88));
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.moonlight-bg {
  background: var(--gradient-moonlight);
}

.section-container {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}

.glass-effect {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.silver-border {
  border: 1px solid rgb(51 65 85);
}

.silver-glow-hover {
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.silver-glow-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(192, 192, 192, 0.25);
}

.text-gradient {
  color: transparent;
  background-image: linear-gradient(135deg, #e8e8e8, #9ca3af);
  -webkit-background-clip: text;
  background-clip: text;
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #0f1419;
  background: linear-gradient(135deg, #f8fafc, #94a3b8);
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.22);
}

.brand-name {
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.main-nav a,
.mobile-nav a,
.site-footer a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
  color: #fff;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-search input,
.filter-panel input,
.filter-panel select {
  color: #e2e8f0;
  border: 1px solid rgb(51 65 85);
  background: rgba(15, 23, 42, 0.58);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
  width: 16rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
}

.header-search button {
  padding: 0.65rem 1rem;
  color: #0f1419;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8fafc, #94a3b8);
  font-weight: 700;
}

.header-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(226, 232, 240, 0.72);
  box-shadow: 0 0 0 4px rgba(226, 232, 240, 0.08);
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  color: #e2e8f0;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.65);
}

.mobile-nav {
  display: none;
  width: min(100% - 2rem, 80rem);
  margin: 0 auto 1rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.9);
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0.9rem;
  color: #cbd5e1;
  border-radius: 0.75rem;
}

.site-header.menu-open .mobile-nav {
  display: block;
}

.hero-carousel {
  position: relative;
  min-height: 70vh;
  height: 70vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(1.08);
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 20, 25, 0.9), rgba(15, 20, 25, 0.42) 52%, rgba(15, 20, 25, 0.92)), linear-gradient(0deg, #0f1419 0%, rgba(15, 20, 25, 0.15) 45%, rgba(15, 20, 25, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  animation: fadeIn 0.7s ease;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
  max-width: 56rem;
  margin: 0;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 5.8rem);
}

.hero-content h1 span {
  color: transparent;
  background-image: linear-gradient(135deg, #fff, #9ca3af);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-content h2 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.hero-summary {
  max-width: 46rem;
  margin: 1.25rem 0 1.5rem;
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-tags span,
.tag-list span,
.card-kicker,
.detail-meta span,
.rank-meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.55);
}

.hero-tags span,
.tag-list span {
  padding: 0.45rem 0.85rem;
  font-size: 0.86rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-btn,
.ghost-btn,
.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
}

.primary-btn {
  color: #0f1419;
  background: linear-gradient(135deg, #fff, #94a3b8);
}

.ghost-btn {
  color: #e2e8f0;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 3rem;
  height: 3rem;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.46);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  font-size: 2rem;
}

.hero-prev {
  left: 1.25rem;
}

.hero-next {
  right: 1.25rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  z-index: 5;
  display: flex;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 2rem;
  background: #f8fafc;
}

.quick-entry {
  margin-top: -2rem;
  position: relative;
  z-index: 8;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  border-radius: 1.25rem;
}

.quick-card strong {
  white-space: nowrap;
  color: #fff;
}

.quick-card nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.quick-card a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.65);
}

.content-section {
  padding: 4rem 0;
}

.page-main {
  padding-top: 7rem;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.page-hero p:last-child {
  max-width: 48rem;
  color: var(--muted-strong);
  font-size: 1.1rem;
  line-height: 1.8;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-icon {
  font-size: 1.35rem;
}

.section-link {
  color: #cbd5e1;
  font-size: 0.95rem;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.44);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.card-hover {
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0, 0, 0.2, 1), border-color 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(203, 213, 225, 0.38);
  box-shadow: var(--shadow);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.82);
}

.poster-wrap img,
.category-card img,
.editor-large img,
.rank-cover img,
.detail-poster img,
.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .poster-wrap img,
.category-card:hover img,
.editor-large:hover img {
  transform: scale(1.08);
}

.poster-wrap::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
}

.poster-badge,
.poster-duration {
  position: absolute;
  z-index: 2;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.72);
}

.poster-badge {
  top: 0.75rem;
  right: 0.75rem;
  color: #111827;
  background: #fbbf24;
}

.poster-duration {
  left: 0.75rem;
  bottom: 0.75rem;
}

.card-body {
  padding: 1rem;
}

.card-kicker {
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.76rem;
}

.card-body h3,
.card-body h2 {
  display: -webkit-box;
  min-height: 2.85em;
  margin: 0 0 0.55rem;
  overflow: hidden;
  color: #fff;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1rem;
  line-height: 1.4;
}

.card-body p {
  display: -webkit-box;
  min-height: 3.1em;
  margin: 0 0 0.9rem;
  overflow: hidden;
  color: var(--muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.9rem;
  line-height: 1.55;
}

.card-meta,
.detail-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.82rem;
}

.editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.35fr);
  gap: 1.35rem;
}

.editor-large {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.5);
}

.editor-large::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18));
}

.editor-large > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2rem;
}

.editor-large span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(251, 191, 36, 0.55);
  border-radius: 999px;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
}

.editor-large h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.editor-large p {
  max-width: 44rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.editor-small-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.category-grid,
.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.category-card {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
  border-radius: 1.25rem;
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(15, 20, 25, 0.9), rgba(15, 20, 25, 0.3));
}

.category-card > div {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
}

.category-card h3,
.category-overview-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}

.category-card p,
.category-overview-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.55;
}

.category-overview-card {
  overflow: hidden;
  border-radius: 1.25rem;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 9rem;
  background: rgba(15, 23, 42, 0.82);
}

.category-overview-body {
  padding: 1.25rem;
}

.category-overview-body span {
  display: inline-flex;
  margin-top: 1rem;
  color: #fff;
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) auto;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 1.25rem;
}

.filter-search-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
}

.filter-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-selects select {
  min-width: 8.75rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
}

.no-results {
  padding: 2rem;
  text-align: center;
  color: #cbd5e1;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.55);
}

.ranking-list {
  display: grid;
  gap: 1rem;
}

.ranking-item {
  display: grid;
  grid-template-columns: 4.5rem 8.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.46);
}

.rank-number {
  color: #e2e8f0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 900;
}

.rank-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.8);
}

.rank-content h2 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.08rem;
}

.rank-content p {
  margin: 0 0 0.65rem;
  color: #94a3b8;
  line-height: 1.55;
}

.rank-meta span {
  padding: 0.25rem 0.55rem;
}

.rank-action {
  color: #0f1419;
  background: linear-gradient(135deg, #f8fafc, #94a3b8);
}

.detail-top {
  padding-top: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.detail-hero-card {
  display: grid;
  grid-template-columns: 19rem minmax(0, 1fr);
  gap: 2rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.82);
}

.detail-info {
  align-self: center;
}

.detail-info h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.detail-intro {
  max-width: 54rem;
  margin: 0 0 1.25rem;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.8;
}

.detail-meta {
  margin-bottom: 1.1rem;
}

.detail-meta span {
  padding: 0.38rem 0.72rem;
}

.player-section {
  padding-top: 2rem;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  background: #020617;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.movie-player {
  display: block;
  width: 100%;
  height: 100%;
  background: #020617;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: #fff;
  border: 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.32), rgba(2, 6, 23, 0.72));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  display: inline-flex;
  width: 5rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #0f1419;
  background: linear-gradient(135deg, #fff, #94a3b8);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.22);
  font-size: 2rem;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  gap: 1.25rem;
  padding-top: 2rem;
}

.detail-article,
.detail-side {
  padding: 1.5rem;
  border-radius: 1.25rem;
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.detail-article h2:not(:first-child) {
  margin-top: 2rem;
}

.detail-article p {
  color: #cbd5e1;
  line-height: 1.9;
}

.detail-side dl {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.detail-side div {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 0.75rem;
}

.detail-side dt {
  color: #94a3b8;
}

.detail-side dd {
  margin: 0;
  color: #e2e8f0;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  background: rgba(15, 23, 42, 0.42);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.site-footer h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.site-footer p,
.site-footer li {
  color: #94a3b8;
  line-height: 1.75;
}

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

.footer-bottom {
  padding: 1rem;
  color: #94a3b8;
  text-align: center;
  border-top: 1px solid rgba(51, 65, 85, 0.4);
}

[hidden] {
  display: none !important;
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

@media (max-width: 860px) {
  .header-inner {
    min-height: 4rem;
  }

  .header-search {
    display: none;
  }

  .hero-carousel {
    min-height: 42rem;
    height: auto;
  }

  .hero-slide {
    min-height: 42rem;
  }

  .hero-arrow {
    display: none;
  }

  .quick-card,
  .section-heading,
  .filter-panel {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .compact-grid,
  .category-movie-grid,
  .category-grid,
  .category-overview-grid,
  .editor-grid,
  .detail-hero-card,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

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

  .ranking-item {
    grid-template-columns: 3rem 6.5rem minmax(0, 1fr);
  }

  .rank-action {
    grid-column: 2 / -1;
  }

  .detail-poster {
    max-width: 18rem;
  }
}

@media (max-width: 560px) {
  .section-container {
    width: min(100% - 1rem, 80rem);
  }

  .hero-content {
    padding-top: 4rem;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-summary {
    font-size: 0.98rem;
  }

  .hero-actions,
  .filter-selects {
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn,
  .filter-selects select {
    width: 100%;
  }

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

  .ranking-item {
    grid-template-columns: 2.5rem 1fr;
  }

  .rank-cover {
    grid-column: 2;
  }

  .rank-content,
  .rank-action {
    grid-column: 1 / -1;
  }
}
