:root {
  --night-950: #0a1929;
  --night-900: #102a43;
  --night-850: #17324d;
  --night-800: #243b53;
  --night-700: #334e68;
  --night-600: #486581;
  --harbor-900: #06312d;
  --harbor-800: #0b4b47;
  --harbor-600: #157f7b;
  --harbor-500: #1a9995;
  --harbor-400: #26b3af;
  --harbor-300: #4dc4c1;
  --amber-500: #ffc107;
  --amber-400: #ffca28;
  --text-main: #ffffff;
  --text-soft: #d1d5db;
  --text-muted: #9ca3af;
  --shadow-deep: 0 25px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --site-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background: linear-gradient(180deg, var(--night-900), var(--night-950) 38%, var(--night-900));
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.shell {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 42, 67, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(51, 78, 104, 0.5);
}

.header-inner {
  width: min(var(--site-width), calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--harbor-600), var(--harbor-400));
  box-shadow: 0 10px 30px rgba(38, 179, 175, 0.28);
  color: white;
  font-size: 13px;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 8px;
}

.nav-link,
.mobile-nav-link {
  color: var(--text-soft);
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: white;
}

.header-search {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  color: white;
  background: var(--night-800);
  border: 1px solid var(--night-600);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--harbor-500);
}

.header-search input {
  width: 190px;
  height: 34px;
  padding: 0 12px;
  border-radius: 8px 0 0 8px;
}

.header-search button,
.mobile-search button,
.search-page-form button {
  height: 34px;
  border: 0;
  padding: 0 14px;
  color: white;
  background: var(--harbor-600);
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.search-page-form button:hover {
  background: var(--harbor-500);
}

.mobile-menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  gap: 14px;
  flex-direction: column;
}

.mobile-search {
  display: flex;
}

.mobile-search input {
  flex: 1;
  min-width: 0;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px 0 0 8px;
}

.mobile-search button {
  height: 38px;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--night-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 25, 41, 0.98), rgba(10, 25, 41, 0.72) 46%, rgba(10, 25, 41, 0.18));
}

.hero-content {
  position: absolute;
  left: max(16px, calc((100vw - var(--site-width)) / 2));
  bottom: 84px;
  max-width: 680px;
  display: grid;
  gap: 16px;
}

.hero-kicker {
  color: var(--harbor-400);
  font-size: 15px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.05;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.hero p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.8;
}

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(51, 78, 104, 0.5);
  border: 1px solid rgba(72, 101, 129, 0.45);
}

.hero-tags span,
.detail-tags span {
  padding: 7px 12px;
  font-size: 13px;
}

.movie-tags span {
  padding: 5px 9px;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: white;
  background: var(--harbor-600);
}

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

.btn-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(16, 42, 67, 0.55);
}

.btn-ghost:hover {
  border-color: var(--harbor-400);
}

.hero-dots {
  position: absolute;
  right: max(16px, calc((100vw - var(--site-width)) / 2));
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #6b7280;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.active {
  width: 34px;
  background: var(--harbor-400);
}

.section {
  padding: 72px 0 0;
}

.section.no-top {
  padding-top: 0;
}

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

.section-head h2 {
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 28px;
}

.section-head a {
  color: var(--harbor-400);
  font-size: 14px;
}

.border-harbor h2,
.border-amber h2 {
  padding-left: 16px;
  border-left: 4px solid var(--harbor-500);
}

.border-amber h2 {
  border-left-color: var(--amber-500);
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(36, 59, 83, 0.42);
  border: 1px solid rgba(51, 78, 104, 0.5);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(38, 179, 175, 0.6);
  box-shadow: var(--shadow-deep);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--night-800);
}

.movie-poster img,
.horizontal-poster img,
.feature-card img,
.category-tile img,
.category-hero img,
.text-row img,
.rank-item img,
.poster-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .movie-poster img,
.horizontal-card:hover .horizontal-poster img,
.feature-card:hover img,
.category-tile:hover img,
.category-hero:hover img {
  transform: scale(1.1);
}

.poster-type {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 7px;
  font-size: 12px;
}

.poster-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  font-size: 44px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.movie-card-body {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.movie-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.movie-card h3 a {
  transition: color 0.2s ease;
}

.movie-card h3 a:hover {
  color: var(--harbor-400);
}

.movie-meta,
.movie-line,
.movie-summary {
  margin: 0;
}

.movie-meta {
  color: var(--text-muted);
  font-size: 13px;
}

.movie-line,
.movie-summary {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 14px;
}

.movie-summary {
  color: var(--text-muted);
}

.panel-section {
  padding: 34px;
  margin-top: 72px;
  border-radius: var(--radius-xl);
  background: rgba(36, 59, 83, 0.5);
  border: 1px solid rgba(51, 78, 104, 0.45);
}

.horizontal-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.horizontal-card {
  width: 270px;
  flex: 0 0 auto;
  display: grid;
  gap: 9px;
}

.horizontal-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--night-900);
}

.horizontal-poster span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 3px 7px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  font-size: 12px;
}

.horizontal-card strong {
  color: white;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.horizontal-card:hover strong {
  color: var(--harbor-400);
}

.horizontal-card em {
  color: var(--text-muted);
  font-style: normal;
  font-size: 13px;
}

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

.feature-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--night-800);
  box-shadow: var(--shadow-deep);
}

.feature-shade,
.category-shade,
.category-hero span {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 42, 67, 0.95), rgba(16, 42, 67, 0.12));
}

.feature-text {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.feature-text strong {
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 28px;
}

.feature-text em {
  color: var(--text-soft);
  font-style: normal;
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
}

.latest-panel,
.rank-panel,
.rank-page-panel,
.filter-panel,
.search-panel,
.detail-card,
.related-panel,
.poster-panel {
  border-radius: var(--radius-lg);
  background: rgba(36, 59, 83, 0.5);
  border: 1px solid rgba(51, 78, 104, 0.45);
}

.latest-panel,
.rank-panel {
  padding: 28px;
}

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

.text-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(36, 59, 83, 0.3);
  transition: background 0.2s ease;
}

.text-row:hover {
  background: var(--night-800);
}

.text-row img {
  height: 82px;
  border-radius: 10px;
}

.text-row span {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
}

.text-row strong {
  color: white;
}

.text-row em,
.text-row small {
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.5;
}

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

.rank-page-panel {
  padding: 22px;
}

.rank-item {
  display: grid;
  grid-template-columns: 40px 90px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(10, 25, 41, 0.32);
  transition: background 0.2s ease;
}

.rank-item:hover {
  background: rgba(11, 75, 71, 0.36);
}

.rank-number {
  color: var(--amber-400);
  font-size: 18px;
  font-weight: 800;
}

.rank-item img {
  height: 56px;
  border-radius: 8px;
}

.rank-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

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

.rank-info em {
  color: var(--text-muted);
  font-style: normal;
  font-size: 13px;
}

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

.category-tile,
.category-hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 190px;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(51, 78, 104, 0.6);
  background: linear-gradient(135deg, var(--night-800), var(--night-900));
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.category-tile:hover,
.category-hero:hover {
  border-color: var(--harbor-500);
  transform: translateY(-4px);
}

.category-tile img,
.category-hero img {
  position: absolute;
  inset: 0;
}

.category-tile strong,
.category-tile em,
.category-hero strong,
.category-hero em {
  position: relative;
  z-index: 1;
}

.category-tile strong,
.category-hero strong {
  font-size: 22px;
  margin-bottom: 8px;
}

.category-tile em,
.category-hero em {
  color: var(--text-soft);
  font-style: normal;
  line-height: 1.6;
  font-size: 14px;
}

.page-main {
  padding: 32px 0 80px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
  padding: 52px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 20% 20%, rgba(38, 179, 175, 0.28), transparent 30%), linear-gradient(135deg, rgba(36, 59, 83, 0.94), rgba(10, 25, 41, 0.98));
  border: 1px solid rgba(51, 78, 104, 0.55);
  box-shadow: var(--shadow-deep);
}

.compact-hero {
  min-height: 260px;
  display: flex;
  align-items: end;
}

.page-hero p {
  margin: 0 0 10px;
  color: var(--harbor-400);
  font-weight: 700;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(36px, 6vw, 58px);
}

.page-hero span {
  display: block;
  max-width: 700px;
  color: var(--text-soft);
  line-height: 1.8;
}

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

.breadcrumb a:hover {
  color: var(--harbor-400);
}

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

.category-block {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

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

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
}

.filter-panel input,
.filter-panel select,
.search-page-form input {
  height: 48px;
  border-radius: 12px;
  padding: 0 16px;
}

.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 0;
}

.search-page-form input {
  border-radius: 12px 0 0 12px;
}

.search-page-form button {
  height: 48px;
  border-radius: 0 12px 12px 0;
}

.search-hint {
  margin-top: 14px;
  color: var(--text-muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
}

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

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

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  color: white;
  border: 0;
  background: radial-gradient(circle at center, rgba(38, 179, 175, 0.26), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: opacity 0.25s ease;
}

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

.play-circle {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: var(--harbor-600);
  box-shadow: 0 18px 50px rgba(38, 179, 175, 0.35);
  font-size: 30px;
}

.detail-card {
  padding: 28px;
}

.detail-card h1 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(30px, 4vw, 44px);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.detail-meta a,
.detail-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(6, 49, 45, 0.5);
  color: var(--harbor-300);
}

.detail-card section {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(51, 78, 104, 0.72);
}

.detail-card h2,
.related-panel h2 {
  margin: 0 0 12px;
  font-size: 21px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
}

.detail-card p {
  margin: 0 0 12px;
  color: var(--text-soft);
  line-height: 1.95;
}

.poster-panel,
.related-panel {
  padding: 20px;
}

.poster-panel {
  display: grid;
  gap: 12px;
}

.poster-panel img {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
}

.poster-panel strong {
  font-size: 20px;
}

.poster-panel span {
  color: var(--text-muted);
}

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

.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(51, 78, 104, 0.5);
  background: var(--night-900);
}

.footer-grid {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-grid p {
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 16px;
}

.footer-grid a {
  display: block;
  color: var(--text-muted);
  margin: 10px 0;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--harbor-400);
}

.footer-bottom {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 32px;
  color: var(--text-muted);
  border-top: 1px solid rgba(51, 78, 104, 0.5);
}

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

.empty-state {
  grid-column: 1 / -1;
  padding: 42px;
  color: var(--text-muted);
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(36, 59, 83, 0.48);
}

@media (max-width: 1100px) {
  .home-grid,
  .catalog-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section,
  .detail-layout,
  .category-block {
    grid-template-columns: 1fr;
  }

  .rank-panel,
  .detail-sidebar {
    order: 2;
  }
}

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

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

  .mobile-nav.open {
    display: flex;
  }

  .header-inner {
    height: 62px;
  }

  .hero {
    min-height: 560px;
    height: 82vh;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 90px;
  }

  .hero-dots {
    left: 18px;
    right: auto;
    bottom: 38px;
  }

  .section {
    padding-top: 52px;
  }

  .home-grid,
  .catalog-grid,
  .category-grid,
  .feature-grid,
  .mini-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-section,
  .latest-panel,
  .rank-panel,
  .rank-page-panel,
  .filter-panel,
  .search-panel,
  .detail-card,
  .related-panel,
  .poster-panel {
    padding: 18px;
  }

  .page-hero {
    padding: 34px 24px;
  }

  .filter-panel,
  .search-page-form {
    grid-template-columns: 1fr;
  }

  .search-page-form input,
  .search-page-form button {
    border-radius: 12px;
  }

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

@media (max-width: 540px) {
  .home-grid,
  .catalog-grid,
  .category-grid,
  .feature-grid,
  .mini-card-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }

  .text-row,
  .rank-item {
    grid-template-columns: 1fr;
  }

  .text-row img,
  .rank-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .horizontal-card {
    width: 235px;
  }
}
