:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --blue-950: #172554;
  --blue-900: #1e3a8a;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --amber-400: #fbbf24;
  --red-500: #ef4444;
  --green-500: #22c55e;
  --white: #ffffff;
  --page-bg: #f8fbff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.09);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-800);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 45%, #f8fafc 100%);
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-950), var(--blue-900), var(--slate-950));
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.28);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  border-radius: 12px;
  background: linear-gradient(135deg, #60a5fa, var(--cyan-400));
  box-shadow: 0 10px 24px rgba(34, 211, 238, 0.28);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  max-width: 230px;
  overflow: hidden;
  color: transparent;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(90deg, #bfdbfe, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-copy small {
  color: #bfdbfe;
  font-size: 12px;
}

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

.nav-link {
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan-400);
}

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

.header-search input,
.mobile-search input {
  width: 220px;
  height: 38px;
  color: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 12px;
  outline: none;
  padding: 0 12px;
  background: rgba(15, 23, 42, 0.52);
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: #94a3b8;
}

.header-search button,
.mobile-search button {
  height: 38px;
  color: var(--white);
  border: 0;
  border-radius: 12px;
  padding: 0 14px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--cyan-500), var(--blue-600));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.primary-button:hover,
.secondary-button:hover,
.footer-button:hover,
.category-card:hover,
.movie-card:hover {
  filter: brightness(1.04);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.6);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: var(--slate-900);
}

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

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  width: min(620px, 100%);
  margin: 0 auto 14px;
}

.mobile-search input {
  width: 100%;
}

.mobile-nav {
  width: min(620px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.mobile-nav-link {
  padding: 10px 12px;
  color: #e2e8f0;
  border-radius: 10px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--cyan-400);
  background: rgba(30, 41, 59, 0.8);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(34, 211, 238, 0.28), transparent 26%),
    radial-gradient(circle at 80% 35%, rgba(96, 165, 250, 0.25), transparent 30%),
    linear-gradient(120deg, var(--blue-950), var(--slate-800), var(--blue-950));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.12) 25%, transparent 25%);
  background-size: 56px 56px;
}

.hero-inner {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 44px;
  padding: 76px 0;
}

.hero-copy {
  max-width: 680px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cffafe;
  border: 1px solid rgba(103, 232, 249, 0.34);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 800;
  background: rgba(6, 182, 212, 0.18);
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 22px 0 14px;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #bae6fd, #67e8f9, #dbeafe);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  margin: 0 0 22px;
  max-width: 620px;
  color: #dbeafe;
  font-size: 18px;
}

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

.primary-button,
.secondary-button,
.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 14px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(90deg, var(--cyan-500), var(--blue-600));
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

.secondary-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.secondary-button:hover,
.footer-button:hover {
  transform: translateY(-2px);
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 560px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(16px);
}

.hero-search input {
  min-width: 0;
  height: 48px;
  color: var(--white);
  border: 0;
  outline: none;
  padding: 0 14px;
  background: transparent;
}

.hero-search input::placeholder {
  color: #bfdbfe;
}

.hero-search button {
  height: 48px;
  color: var(--white);
  border: 0;
  border-radius: 14px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 800;
  background: linear-gradient(90deg, var(--cyan-500), var(--blue-600));
}

.hero-showcase {
  position: relative;
  min-height: 470px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  align-items: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  pointer-events: none;
  background: rgba(15, 23, 42, 0.54);
  box-shadow: 0 32px 80px rgba(2, 6, 23, 0.38);
  backdrop-filter: blur(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-movie h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
}

.hero-movie p {
  margin: 0 0 16px;
  color: #dbeafe;
}

.hero-meta,
.detail-meta,
.tag-row,
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hero-meta span,
.detail-meta span,
.detail-meta a,
.tag-row span,
.tag-row a,
.breadcrumbs a,
.breadcrumbs span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
}

.hero-meta span {
  color: #e0f2fe;
  background: rgba(14, 165, 233, 0.18);
}

.hero-dots {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

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

.hero-dot.active {
  width: 28px;
  background: var(--cyan-400);
}

.page-main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 72px;
}

.page-hero,
.section-card {
  border-radius: 26px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.88);
}

.page-hero {
  margin-bottom: 36px;
  background:
    radial-gradient(circle at 90% 20%, rgba(34, 211, 238, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef6ff);
}

.page-hero h1,
.section-title h2,
.detail-info h1 {
  margin: 0;
  color: var(--slate-800);
  line-height: 1.18;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.03em;
}

.page-hero p {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--slate-600);
  font-size: 17px;
}

.section-block {
  margin-top: 54px;
}

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

.section-title h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section-title p {
  margin: 6px 0 0;
  color: var(--slate-600);
}

.more-link {
  color: var(--blue-600);
  font-weight: 800;
}

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

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

.category-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  color: var(--white);
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(135deg, var(--blue-900), var(--slate-800));
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.28);
}

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

.category-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.category-card span,
.category-card p {
  position: relative;
  z-index: 1;
  color: #dbeafe;
}

.category-card p {
  margin: 12px 0 0;
  font-size: 14px;
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--slate-900);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.72), transparent 58%);
}

.year-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 28px;
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.year-badge {
  right: 10px;
}

.rank-badge {
  left: 10px;
  background: linear-gradient(135deg, var(--red-500), var(--amber-400));
}

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

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

.movie-card-body {
  padding: 14px 14px 16px;
}

.movie-card h3 {
  min-height: 43px;
  margin: 0 0 7px;
  color: var(--slate-800);
  font-size: 15px;
  line-height: 1.42;
}

.movie-card h3 a:hover {
  color: var(--blue-600);
}

.movie-meta,
.movie-line {
  margin: 0;
  color: var(--slate-500);
  font-size: 12px;
}

.movie-line {
  display: -webkit-box;
  min-height: 40px;
  margin-top: 8px;
  overflow: hidden;
  color: var(--slate-600);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.tag-row span,
.tag-row a {
  color: var(--blue-700);
  background: #dbeafe;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 54px 76px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.ranking-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border-radius: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red-500), var(--amber-400));
}

.ranking-thumb img {
  width: 76px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.ranking-info h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.ranking-info p {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
}

.ranking-action {
  color: var(--blue-600);
  font-weight: 900;
  white-space: nowrap;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.filter-input,
.filter-select {
  width: 100%;
  height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  outline: none;
  color: var(--slate-800);
  padding: 0 14px;
  background: var(--white);
}

.filter-input:focus,
.filter-select:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.14);
}

.filter-selects {
  display: flex;
  gap: 10px;
}

.empty-state {
  display: none;
  margin-top: 22px;
  padding: 26px;
  text-align: center;
  color: var(--slate-500);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.empty-state.show {
  display: block;
}

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

.player-shell {
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.28);
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: rgba(2, 6, 23, 0.25);
  z-index: 2;
}

.player-layer.hidden {
  display: none;
}

.player-button {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  border-radius: 999px;
  font-size: 36px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.36);
}

.detail-info,
.detail-side,
.story-panel {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.detail-info {
  margin-top: 24px;
}

.detail-info h1 {
  font-size: clamp(28px, 4vw, 44px);
}

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

.detail-meta span,
.detail-meta a {
  color: var(--slate-700);
  background: var(--slate-100);
}

.detail-meta a {
  color: var(--blue-700);
  background: #dbeafe;
}

.story-panel {
  margin-top: 22px;
}

.story-panel h2,
.detail-side h2 {
  margin: 0 0 12px;
  color: var(--slate-800);
  font-size: 22px;
}

.story-panel p {
  margin: 0;
  color: var(--slate-700);
}

.story-panel p + p {
  margin-top: 14px;
}

.detail-cover {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

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

.side-link {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 16px;
  background: var(--slate-100);
  transition: background 0.2s ease;
}

.side-link:hover {
  background: #dbeafe;
}

.side-link img {
  width: 58px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.side-link strong {
  display: block;
  color: var(--slate-800);
  font-size: 14px;
  line-height: 1.35;
}

.side-link span {
  color: var(--slate-500);
  font-size: 12px;
}

.breadcrumbs {
  margin-bottom: 18px;
}

.breadcrumbs a,
.breadcrumbs span {
  color: var(--slate-600);
  background: rgba(255, 255, 255, 0.72);
}

.site-footer {
  color: #e2e8f0;
  background: linear-gradient(135deg, var(--slate-950), var(--slate-800), var(--slate-950));
}

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--cyan-400);
  font-size: 19px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: #cbd5e1;
  font-size: 14px;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 7px;
}

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

.footer-button {
  color: var(--white) !important;
  background: linear-gradient(90deg, var(--cyan-500), var(--blue-600));
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

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

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

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

  .hero-showcase {
    min-height: 430px;
  }

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

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

@media (max-width: 760px) {
  .header-inner,
  .page-main,
  .footer-inner,
  .hero-inner {
    width: min(100% - 24px, 1240px);
  }

  .brand-copy strong {
    max-width: 190px;
    font-size: 16px;
  }

  .hero-inner {
    min-height: auto;
    padding: 48px 0;
  }

  .hero-slide {
    grid-template-columns: 116px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .hero-showcase {
    min-height: 360px;
  }

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

  .filter-selects {
    flex-direction: column;
  }

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

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

  .ranking-item {
    grid-template-columns: 42px 60px 1fr;
  }

  .ranking-action {
    grid-column: 3;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    max-width: 148px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    position: relative;
  }

  .hero-showcase {
    min-height: auto;
  }

  .hero-slide:not(.active) {
    display: none;
  }

  .hero-poster {
    max-width: 170px;
  }
}
