:root {
  --blue: #2563eb;
  --cyan: #06b6d4;
  --teal: #14b8a6;
  --yellow: #facc15;
  --red: #ef4444;
  --green: #10b981;
  --slate: #0f172a;
  --gray: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--slate);
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 45%, #f8fafc 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--teal));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.header-inner {
  max-width: 1180px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

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

.nav-link,
.mobile-link {
  font-weight: 700;
  border-radius: 999px;
  transition: 0.24s ease;
}

.nav-link {
  padding: 10px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #fff7b3;
  background: rgba(255, 255, 255, 0.14);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
}

.header-search input,
.mobile-search input {
  width: 220px;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 14px;
  border-radius: 14px 0 0 14px;
}

.header-search button,
.mobile-search button {
  border: 0;
  color: #1e3a8a;
  font-weight: 900;
  background: var(--yellow);
  padding: 10px 16px;
  border-radius: 0 14px 14px 0;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 18px;
}

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

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mobile-link {
  padding: 12px 10px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 640px;
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.36), transparent 28%), linear-gradient(125deg, #1d4ed8 0%, #0891b2 48%, #0f766e 100%);
}

.hero-slider {
  position: relative;
  max-width: 1180px;
  min-height: 640px;
  margin: 0 auto;
  padding: 74px 20px 96px;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 74px 20px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 50px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-weight: 800;
  color: #fef9c3;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 26px;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.8;
}

.hero-badges,
.hero-actions,
.movie-meta,
.tag-row,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-badges span,
.movie-meta span,
.tag-row span,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.hero-badges span {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-actions {
  margin-top: 30px;
}

.primary-btn,
.secondary-btn,
.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 16px;
  padding: 12px 20px;
  font-weight: 900;
  transition: 0.24s ease;
}

.primary-btn {
  color: #164e63;
  background: linear-gradient(90deg, #fef08a, #facc15);
  box-shadow: 0 16px 34px rgba(250, 204, 21, 0.28);
}

.secondary-btn,
.panel-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.primary-btn:hover,
.secondary-btn:hover,
.panel-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-poster {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.38);
  transform: rotate(1.2deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.5));
}

.hero-poster span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 30px;
  box-shadow: var(--shadow);
}

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

.hero-dot {
  width: 36px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: 0.24s ease;
}

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

.hero-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.45;
  animation: pulseGlow 4.8s ease-in-out infinite;
}

.glow-one {
  width: 320px;
  height: 320px;
  left: 4%;
  top: 18%;
  background: #60a5fa;
}

.glow-two {
  width: 380px;
  height: 380px;
  right: 4%;
  bottom: 8%;
  background: #fde047;
  animation-delay: 1.2s;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 20px;
}

.content-section.no-pad {
  padding-left: 20px;
  padding-right: 20px;
}

.narrow-section {
  max-width: 960px;
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2,
.toolbar h2,
.rank-panel h2,
.recommend-panel h2,
.story-card h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.04em;
  color: #1e293b;
}

.section-title p,
.toolbar p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.featured-grid,
.card-grid,
.category-grid,
.overview-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.featured-card,
.movie-card,
.category-tile,
.overview-card,
.story-card,
.rank-panel,
.recommend-panel,
.player-card,
.search-console {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.featured-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  transition: 0.28s ease;
}

.featured-card img,
.overview-card img,
.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.featured-card:hover,
.movie-card:hover,
.category-tile:hover,
.overview-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.featured-card:hover img,
.movie-card:hover img,
.category-tile:hover img,
.overview-card:hover img {
  transform: scale(1.08);
}

.featured-shade,
.overview-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
}

.featured-content,
.overview-text {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.featured-content strong,
.overview-text strong {
  font-size: 24px;
  line-height: 1.25;
}

.featured-content em,
.overview-text em {
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
  line-height: 1.7;
}

.pill {
  width: fit-content;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 12px;
}

.pill.hot {
  background: var(--red);
}

.movie-card {
  overflow: hidden;
  background: var(--white);
  transition: 0.28s ease;
}

.movie-thumb {
  position: relative;
  height: 174px;
  margin: 0;
  overflow: hidden;
  background: #e2e8f0;
}

.movie-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.36s ease;
}

.movie-year {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  padding: 5px 8px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.66);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

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

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

.movie-body {
  padding: 16px;
}

.movie-meta span {
  padding: 5px 9px;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  font-size: 12px;
}

.movie-meta span:nth-child(2n) {
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.movie-body h3 {
  min-height: 48px;
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.35;
  color: #1f2937;
}

.movie-body p {
  min-height: 46px;
  margin: 0 0 12px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}

.tag-row span {
  padding: 4px 8px;
  color: #475569;
  background: #f1f5f9;
  font-size: 12px;
}

.color-band {
  padding: 0;
}

.warm-band {
  background: linear-gradient(90deg, #fff7ed, #fee2e2);
}

.cool-band {
  background: linear-gradient(90deg, #ecfdf5, #e0f2fe);
}

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

.rank-panel,
.recommend-panel {
  padding: 22px;
  background: var(--white);
}

.rank-panel {
  position: sticky;
  top: 96px;
}

.rank-list,
.compact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.rank-list a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: #f8fafc;
  transition: 0.22s ease;
}

.rank-list a:hover,
.compact-card:hover,
.rank-row:hover {
  background: #eef6ff;
}

.rank-list span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  font-weight: 900;
}

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

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

.panel-link {
  margin-top: 20px;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.category-tile,
.overview-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  color: var(--white);
  transition: 0.28s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.72));
}

.category-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.category-tile strong {
  font-size: 22px;
}

.category-tile em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.page-hero {
  background: radial-gradient(circle at left top, rgba(250, 204, 21, 0.3), transparent 25%), linear-gradient(120deg, #1d4ed8, #0891b2 52%, #0f766e);
}

.compact-hero,
.category-hero {
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 20px;
}

.page-hero div {
  max-width: 820px;
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  color: #fef9c3;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 900;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero p {
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.75;
}

.overview-card {
  min-height: 260px;
}

.toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.filter-input,
.large-search {
  width: min(100%, 360px);
  border: 1px solid var(--line);
  outline: 0;
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--slate);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
}

.filter-input:focus,
.large-search:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

.empty-state {
  display: none;
  margin-top: 28px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.search-console {
  padding: 22px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--white), #eff6ff);
}

.large-search {
  width: 100%;
  font-size: 18px;
}

.quick-links {
  margin-bottom: 28px;
}

.quick-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #075985;
  background: #e0f2fe;
  font-weight: 800;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: 0.22s ease;
}

.rank-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  font-weight: 900;
}

.rank-row img {
  width: 82px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.rank-main strong,
.rank-main em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-main em {
  color: var(--muted);
  font-style: normal;
}

.detail-hero {
  min-height: 560px;
  background: #020617;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  filter: blur(6px);
  transform: scale(1.04);
}

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.68), rgba(2, 6, 23, 0.82));
}

.detail-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 20px 62px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 34px;
  color: #bfdbfe;
  font-size: 14px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-cover {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.38);
}

.detail-copy h1 {
  margin: 20px 0 16px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 760px;
  margin: 0 0 20px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

.large-meta span {
  padding: 8px 12px;
}

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

.detail-tags span {
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.14);
}

.detail-section {
  max-width: 1180px;
}

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

.watch-main {
  min-width: 0;
}

.player-card {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
}

.player-card video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--white);
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.78));
  cursor: pointer;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 38px;
  box-shadow: var(--shadow);
}

.player-overlay strong {
  font-size: 22px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.player-overlay.is-hidden {
  display: none;
  pointer-events: none;
}

.story-card {
  padding: 26px;
  margin-bottom: 20px;
  background: var(--white);
}

.story-card p {
  margin: 14px 0 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.9;
  white-space: pre-line;
}

.recommend-panel {
  position: sticky;
  top: 96px;
}

.compact-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  transition: 0.2s ease;
}

.rank-cover {
  overflow: hidden;
  border-radius: 12px;
}

.rank-cover img {
  width: 112px;
  height: 70px;
  object-fit: cover;
}

.compact-info {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.compact-info strong,
.compact-info em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  margin-top: 40px;
  padding: 54px 20px 26px;
  color: var(--white);
  background: linear-gradient(90deg, #0f172a, #334155, #0f172a);
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 34px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #67e8f9;
}

.site-footer p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.8;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #cbd5e1;
  transition: 0.2s ease;
}

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

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tags a {
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.footer-bottom {
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #94a3b8;
  text-align: center;
}

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-slide,
  .detail-grid,
  .watch-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    gap: 32px;
    text-align: left;
  }

  .hero-poster {
    min-height: 300px;
  }

  .hero-poster img {
    min-height: 300px;
  }

  .featured-grid,
  .card-grid.four-col,
  .category-grid,
  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-panel,
  .recommend-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 62px;
    padding: 0 14px;
  }

  .site-logo {
    font-size: 22px;
  }

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

  .hero-slider {
    padding: 42px 16px 92px;
  }

  .hero-slide {
    inset: 42px 16px 92px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p,
  .page-hero p,
  .detail-copy p {
    font-size: 16px;
  }

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

  .featured-grid,
  .card-grid.four-col,
  .category-grid,
  .overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .toolbar {
    display: grid;
    align-items: stretch;
  }

  .filter-input {
    width: 100%;
  }

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

  .rank-row img {
    width: 68px;
    height: 48px;
  }

  .rank-side {
    display: none;
  }

  .detail-inner {
    padding: 26px 16px 46px;
  }

  .detail-cover {
    height: 360px;
  }

  .compact-card {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .rank-cover img {
    width: 94px;
    height: 62px;
  }
}
