
:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(14, 165, 233, 0.22);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --soft: #64748b;
  --sky: #38bdf8;
  --cyan: #22d3ee;
  --amber: #f59e0b;
  --danger: #fb7185;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(2, 8, 23, 0.54);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 8%, rgba(56, 189, 248, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 2%, rgba(245, 158, 11, 0.12), transparent 22rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

img.is-missing {
  opacity: 0;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.92));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.32);
}

.brand-text,
.footer-brand {
  font-size: 1.2rem;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.desktop-nav a,
.nav-menu > button {
  color: #cbd5e1;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.nav-menu:hover > button {
  color: var(--sky);
}

.nav-menu {
  position: relative;
}

.nav-menu-panel {
  position: absolute;
  top: 100%;
  left: -18px;
  width: 190px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.18s ease;
}

.nav-menu:hover .nav-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu-panel a {
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-menu-panel a:hover {
  background: rgba(14, 165, 233, 0.14);
}

.nav-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  width: min(300px, 30vw);
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.nav-search input,
.home-search input,
.filter-panel input,
.filter-panel select,
.mobile-nav input {
  width: 100%;
  color: var(--text);
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid var(--line);
  outline: none;
}

.nav-search input {
  border: 0;
  padding: 10px 12px 10px 16px;
}

.nav-search button,
.home-search button,
.mobile-nav button {
  border: 0;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  padding: 10px 16px;
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(15, 23, 42, 0.8);
  border-radius: 12px;
  padding: 8px 12px;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
}

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

.mobile-nav a {
  color: #cbd5e1;
}

.mobile-nav form {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
}

.mobile-nav input {
  border-radius: 999px 0 0 999px;
  padding: 10px 14px;
}

.site-main {
  padding-top: 68px;
}

.inner-main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 70px;
}

.hero-carousel {
  position: relative;
  min-height: 650px;
  height: 72vh;
  overflow: hidden;
  background: #020617;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.82) 38%, rgba(2, 6, 23, 0.2) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 1) 0%, transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1240px;
}

.hero-kicker,
.page-hero > span,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: white;
  background: rgba(14, 165, 233, 0.82);
  border: 1px solid rgba(125, 211, 252, 0.32);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 720px;
  color: #cbd5e1;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  margin: 0 0 24px;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span {
  color: #bae6fd;
  background: rgba(14, 165, 233, 0.14);
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.82rem;
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.primary-btn {
  color: white;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  box-shadow: 0 16px 42px rgba(14, 165, 233, 0.34);
}

.ghost-btn {
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(125, 211, 252, 0.28);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(14, 165, 233, 0.28);
}

.hero-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 50%;
  color: white;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.42);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dot.is-active {
  width: 30px;
  background: var(--sky);
}

.intro-panel,
.filter-panel,
.page-hero,
.rank-feature,
.detail-copy,
.detail-sidebar,
.category-card-large,
.site-footer {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.42));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-panel {
  width: min(1240px, calc(100% - 32px));
  margin: -70px auto 0;
  position: relative;
  z-index: 10;
  padding: 26px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
  backdrop-filter: blur(16px);
}

.intro-panel h2,
.page-hero h1,
.section-heading h2,
.detail-copy h1 {
  margin: 0;
  letter-spacing: -0.03em;
}

.intro-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.intro-panel p,
.page-hero p {
  color: var(--muted);
  margin: 10px 0 0;
}

.home-search {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.home-search input {
  border: 0;
  padding: 16px 18px;
}

.home-search button {
  padding: 0 24px;
  font-weight: 800;
}

.content-section,
.rank-feature,
.filter-panel,
.page-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 56px auto 0;
}

.inner-main .content-section,
.inner-main .rank-feature,
.inner-main .filter-panel,
.inner-main .page-hero {
  width: 100%;
}

.content-section {
  margin-top: 56px;
}

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

.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

.section-heading a {
  color: var(--sky);
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.16);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.7);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 18px 48px rgba(2, 132, 199, 0.18);
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(8, 47, 73, 0.58));
}

.poster img,
.small-poster img,
.rank-thumb img,
.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.2s ease;
}

.movie-card:hover .poster img,
.small-card:hover img,
.rank-row:hover img,
.category-tile:hover img,
.category-card-large:hover img {
  transform: scale(1.08);
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), transparent 54%);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(14, 165, 233, 0.78);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: 0.22s ease;
}

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

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

.movie-card h2 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card h2 a:hover {
  color: var(--sky);
}

.movie-meta,
.movie-line {
  color: var(--muted);
  margin: 0 0 9px;
  font-size: 0.86rem;
}

.movie-line {
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row span {
  font-size: 0.76rem;
  padding: 3px 8px;
}

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

.category-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.76);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.1));
}

.category-tile span,
.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
}

.category-tile span {
  color: var(--sky);
  font-weight: 800;
}

.category-tile strong {
  font-size: 1.16rem;
}

.category-tile em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.88rem;
}

.rank-feature {
  padding: 26px;
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 52px 70px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.28);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.46);
  background: rgba(14, 165, 233, 0.08);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber), #f97316);
}

.rank-thumb {
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
}

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

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

.rank-info em,
.rank-info span {
  color: var(--muted);
  font-style: normal;
  font-size: 0.84rem;
}

.page-hero {
  padding: 40px;
}

.slim-hero {
  margin-top: 40px;
}

.page-hero h1 {
  margin-top: 14px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.filter-panel {
  padding: 18px;
}

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

.filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.filter-grid input,
.filter-grid select {
  border-radius: 14px;
  padding: 12px 14px;
}

.empty-state {
  display: none;
  color: var(--muted);
  text-align: center;
  padding: 48px;
}

.empty-state.is-visible {
  display: block;
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card-large:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.48);
}

.category-cover {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
}

.category-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.category-copy strong {
  font-size: 1.4rem;
}

.category-copy em {
  color: var(--muted);
  font-style: normal;
}

.breadcrumb {
  margin: 38px 0 18px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--sky);
}

.breadcrumb em {
  color: var(--text);
  font-style: normal;
}

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

.detail-primary {
  display: grid;
  gap: 20px;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 22px;
  background: #020617;
  box-shadow: var(--shadow);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  cursor: pointer;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2), rgba(2, 6, 23, 0.48));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.42);
  font-size: 2rem;
  text-indent: 5px;
}

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

.detail-copy {
  padding: 28px;
}

.detail-copy h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.detail-copy h2,
.detail-sidebar h2 {
  margin: 28px 0 12px;
  font-size: 1.35rem;
}

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

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

.lead-text {
  color: #bae6fd;
  padding: 16px;
  border-left: 4px solid var(--sky);
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.08);
}

.detail-copy p {
  color: #cbd5e1;
  margin: 0;
}

.detail-sidebar {
  height: fit-content;
  position: sticky;
  top: 92px;
  padding: 20px;
}

.detail-sidebar h2 {
  margin-top: 0;
}

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

.small-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.small-poster {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
}

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

.small-info strong {
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.small-info em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
}

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

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

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

.site-footer p,
.footer-links a,
.copyright {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--sky);
}

.copyright {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(14, 165, 233, 0.16);
  text-align: center;
  font-size: 0.9rem;
}

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

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

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

  .detail-sidebar {
    position: static;
  }
}

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

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-carousel {
    min-height: 580px;
    height: 76vh;
  }

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

  .hero-control {
    display: none;
  }

  .intro-panel,
  .footer-grid,
  .filter-grid,
  .category-card-large {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .nav-shell,
  .inner-main,
  .content-section,
  .rank-feature,
  .filter-panel,
  .page-hero,
  .intro-panel,
  .site-footer {
    width: min(100% - 22px, 1240px);
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero-content {
    width: min(100% - 28px, 1240px);
  }

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

  .hero-actions {
    width: 100%;
  }

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

  .movie-grid,
  .compact-grid,
  .category-grid,
  .category-large-grid {
    gap: 12px;
  }

  .movie-card-body {
    padding: 12px;
  }

  .movie-line {
    display: none;
  }

  .rank-row {
    grid-template-columns: 44px 58px minmax(0, 1fr);
  }

  .rank-info span {
    display: none;
  }

  .page-hero,
  .detail-copy,
  .rank-feature {
    padding: 22px;
  }
}
