:root {
  color-scheme: light;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --orange-soft: #ffedd5;
  --red: #dc2626;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --black: #050505;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
  color: var(--gray-900);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.88);
  backdrop-filter: blur(18px);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--gray-900);
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.28);
}

.logo-text {
  white-space: nowrap;
  font-size: 19px;
  letter-spacing: -0.02em;
}

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

.nav-link,
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--gray-600);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--orange);
  background: var(--orange-soft);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

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

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--gray-700);
}

.dropdown-menu a:hover {
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.header-search {
  display: flex;
  align-items: center;
  width: 270px;
  padding: 4px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: #fff;
}

.header-search input,
.big-search input,
.filter-panel input,
.filter-panel select {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.header-search input {
  flex: 1;
  padding: 0 12px;
}

.header-search button,
.big-search button {
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button {
  padding: 8px 14px;
}

.header-search button:hover,
.big-search button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

.mobile-menu-button {
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: var(--gray-100);
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gray-900);
}

.mobile-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 58px;
  z-index: 2;
  transform: translateX(-50%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #fed7aa;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--orange);
}

.hero-content h1,
.page-hero h1,
.detail-intro h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
}

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

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

.btn-primary,
.btn-glass,
.side-link,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 24px rgba(234, 88, 12, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--orange-dark);
}

.btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-search-section {
  margin-top: -42px;
  position: relative;
  z-index: 10;
}

.quick-search-card,
.panel-card,
.info-card,
.player-card,
.category-card-large {
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.quick-search-card {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.quick-search-card h2,
.section-head h2,
.panel-card h2,
.info-card h2,
.article-block h2,
.grid-side-title {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.big-search {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--gray-50);
}

.big-search input {
  flex: 1;
  padding: 0 12px;
}

.big-search button {
  padding: 12px 20px;
}

.section {
  padding: 56px 0;
}

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

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

.section-head.compact {
  margin-bottom: 18px;
}

.section-link {
  min-height: 38px;
  padding: 0 14px;
  color: var(--orange);
  background: var(--orange-soft);
}

.section-link:hover,
.side-link:hover {
  color: #fff;
  background: var(--orange);
}

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

.category-tile {
  min-height: 118px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, #fff, #fff7ed);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.movie-card:hover,
.rank-card:hover,
.category-card-large:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-tile span {
  font-size: 20px;
  font-weight: 900;
}

.category-tile em {
  margin-top: 14px;
  color: var(--gray-600);
  font-style: normal;
  line-height: 1.55;
}

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-wrap,
.wide-cover,
.category-card-media,
.rank-cover,
.detail-poster,
.player-box {
  position: relative;
  overflow: hidden;
  background: #111827;
}

.poster-wrap {
  aspect-ratio: 3 / 4;
}

.poster-wrap img,
.wide-cover img,
.category-card-media img,
.rank-cover img,
.detail-poster img,
.player-cover img,
.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-card:hover img,
.rank-card:hover img,
.category-card-large:hover img {
  transform: scale(1.06);
}

.poster-wrap img,
.wide-cover img,
.rank-cover img,
.category-card-media img {
  transition: transform 0.35s ease;
}

.movie-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 10px;
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.poster-play,
.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.25s ease;
}

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

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

.movie-card-body h3,
.rank-info h3,
.category-card-large h2 {
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-body p,
.rank-info p,
.category-card-large p,
.page-hero p,
.info-card p,
.article-block p,
.site-footer p {
  color: var(--gray-600);
  line-height: 1.72;
}

.movie-card-body p,
.rank-info p {
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta-row,
.rank-info div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--gray-500);
  font-size: 13px;
}

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

.tag-row span {
  color: #9a3412;
  background: #ffedd5;
}

.scroll-row {
  display: flex;
  gap: 22px;
  padding: 0 0 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.scroll-row .movie-card-wide {
  width: 286px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.movie-card-wide .wide-cover {
  aspect-ratio: 16 / 10;
}

.wide-grid .wide-cover {
  aspect-ratio: 16 / 9;
}

.masonry-grid {
  column-count: 4;
  column-gap: 22px;
}

.masonry-grid .movie-card {
  break-inside: avoid;
  margin: 0 0 22px;
}

.two-column-grid,
.detail-content-grid,
.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}

.panel-card,
.info-card,
.player-card {
  padding: 24px;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 52px 116px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.panel-card .rank-card:hover {
  background: #fff7ed;
}

.rank-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-weight: 900;
}

.rank-cover {
  height: 74px;
  border-radius: 13px;
}

.large-rank-list .rank-card {
  grid-template-columns: 58px 140px minmax(0, 1fr);
}

.page-hero,
.detail-hero {
  position: relative;
  color: #fff;
  background: radial-gradient(circle at 20% 10%, rgba(234, 88, 12, 0.38), transparent 30%), linear-gradient(135deg, #0f172a, #020617 62%, #111827);
}

.compact-hero {
  padding: 72px 0;
}

.compact-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #fff;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 170px 170px;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.filter-panel.expanded {
  grid-template-columns: 1fr 180px 160px 160px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--gray-50);
  color: var(--gray-700);
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card-media {
  min-height: 150px;
  border-radius: 18px;
}

.category-card-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent);
}

.category-card-media span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.mini-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mini-link-list a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 13px;
}

.mini-link-list a:hover {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.detail-hero {
  min-height: 560px;
  overflow: hidden;
}

.detail-bg,
.detail-bg-mask {
  position: absolute;
  inset: 0;
}

.detail-bg {
  filter: blur(8px);
  transform: scale(1.04);
  opacity: 0.46;
}

.detail-bg-mask {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.92));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 56px 0;
}

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

.detail-poster {
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.detail-one-line {
  max-width: 780px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.8;
}

.jump-player {
  margin-top: 28px;
}

.detail-content-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.player-card {
  padding: 12px;
}

.player-box {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: #000;
}

.player-video,
.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-video {
  background: #000;
}

.player-cover {
  z-index: 4;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
}

.player-cover-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: #fff;
  background: rgba(234, 88, 12, 0.92);
  font-size: 34px;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 42px rgba(234, 88, 12, 0.34);
}

.article-block,
.info-card {
  margin-top: 26px;
}

.article-block {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.article-block p {
  margin: 18px 0 0;
  font-size: 17px;
}

.info-card:first-child {
  margin-top: 0;
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.info-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.info-list span {
  color: var(--gray-500);
}

.info-list strong {
  color: var(--gray-900);
  text-align: right;
}

.side-link {
  min-height: 42px;
  margin-top: 10px;
  padding: 0 16px;
  color: var(--orange);
  background: var(--orange-soft);
}

.site-footer {
  margin-top: 42px;
  padding: 48px 0 0;
  color: rgba(255, 255, 255, 0.76);
  background: #0f172a;
}

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

.footer-logo {
  color: #fff;
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

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

.footer-bottom {
  margin-top: 34px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
}

.search-item.is-hidden {
  display: none;
}

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

  .mobile-menu-button {
    display: block;
  }

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

  .wide-grid,
  .two-column-grid,
  .detail-content-grid,
  .ranking-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    column-count: 3;
  }

  .quick-search-card,
  .filter-panel,
  .filter-panel.expanded {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    height: 64px;
  }

  .logo-text {
    font-size: 17px;
  }

  .hero-carousel {
    height: 520px;
  }

  .hero-content {
    bottom: 70px;
  }

  .hero-copy,
  .detail-one-line {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .section {
    padding: 40px 0;
  }

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

  .poster-grid,
  .category-grid,
  .compact-grid,
  .wide-grid,
  .category-large-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .category-card-large {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    column-count: 2;
  }

  .rank-card,
  .large-rank-list .rank-card {
    grid-template-columns: 42px 86px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-cover {
    height: 62px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-poster {
    width: min(250px, 70vw);
  }

  .detail-hero-inner {
    padding: 40px 0;
  }

  .article-block,
  .panel-card,
  .info-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container,
  .site-header-inner,
  .mobile-nav {
    width: min(100% - 22px, 1180px);
  }

  .poster-grid,
  .compact-grid,
  .category-grid,
  .wide-grid {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    column-count: 1;
  }

  .scroll-row .movie-card-wide {
    width: 82vw;
  }

  .quick-search-card {
    padding: 20px;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-intro h1 {
    font-size: 34px;
  }
}