:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-deep: #020617;
  --panel: rgba(30, 41, 59, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.9);
  --line: rgba(96, 165, 250, 0.22);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --orange: #f97316;
  --green: #22c55e;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(2, 6, 23, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.28), transparent 34rem),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 28rem),
    linear-gradient(135deg, #0f172a 0%, #1e293b 42%, #0f172a 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.97), rgba(30, 64, 175, 0.92), rgba(15, 23, 42, 0.97));
  border-bottom: 1px solid rgba(59, 130, 246, 0.32);
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.42);
  backdrop-filter: blur(14px);
}

.topbar,
.quick-cats-inner,
.content-section,
.footer-grid,
.footer-bottom,
.breadcrumb,
.page-hero,
.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand {
  flex: 0 0 auto;
  font-size: 1.2rem;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  box-shadow: 0 10px 25px rgba(34, 211, 238, 0.3);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08);
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cbd5e1;
  font-size: 0.95rem;
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  transform: translateY(-1px);
}

.header-search {
  position: relative;
  width: 260px;
}

.header-search input,
.mobile-search input,
.search-panel input,
.search-panel select,
.search-panel button,
.sort-select {
  width: 100%;
  color: #fff;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.64);
  border-radius: 999px;
  outline: none;
}

.header-search input {
  height: 38px;
  padding: 0 18px 0 42px;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  color: #94a3b8;
  transform: translateY(-50%);
}

.mobile-menu-button {
  display: none;
  color: #fff;
  border: 0;
  background: rgba(15, 23, 42, 0.55);
  border-radius: 12px;
  padding: 9px;
}

.mobile-panel {
  display: none;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.96);
}

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

.mobile-panel a {
  padding: 9px 0;
  color: #cbd5e1;
}

.mobile-search input {
  height: 40px;
  padding: 0 16px;
}

.quick-cats {
  background: rgba(15, 23, 42, 0.7);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  overflow-x: auto;
}

.quick-cats-inner {
  display: flex;
  gap: 18px;
  padding: 8px 0;
  white-space: nowrap;
}

.quick-cats a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.22s ease;
}

.quick-cats a:hover {
  color: #60a5fa;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.02);
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.64) 46%, rgba(15, 23, 42, 0.14) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.72), transparent 58%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100% - 1180px) / 2));
  right: 24px;
  bottom: 78px;
  max-width: 720px;
}

.hero-label,
.page-hero span {
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
}

.hero-content h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 650px;
  margin: 0 0 18px;
  color: #dbeafe;
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.35);
  background: rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
}

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

.primary-button,
.ghost-button,
.text-button,
.search-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
  color: #fff;
  padding: 13px 25px;
  background: linear-gradient(90deg, #2563eb, #0891b2);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.32);
}

.primary-button:hover,
.search-panel button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.38);
}

.ghost-button {
  color: #e0f2fe;
  padding: 12px 22px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  background: rgba(15, 23, 42, 0.5);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  font-size: 2.1rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.22s ease, transform 0.22s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

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

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

.hero-dot.active {
  width: 34px;
  background: #fff;
}

.content-section {
  padding: 54px 0;
}

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

.section-heading h2,
.panel-heading h2,
.detail-article h1,
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--soft);
}

.section-link,
.panel-heading a,
.text-button {
  color: #60a5fa;
  font-weight: 700;
}

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

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(2, 6, 23, 0.22);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px) scale(1.015);
  background: rgba(30, 41, 59, 0.88);
  border-color: rgba(96, 165, 250, 0.35);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111827;
}

.poster-link img,
.horizontal-cover img,
.detail-poster,
.category-cover-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-link img,
.horizontal-cover img {
  transition: transform 0.45s ease;
}

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

.card-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.card-overlay span,
.card-play,
.big-play {
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(37, 99, 235, 0.82);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.32);
}

.card-overlay span {
  width: 54px;
  height: 54px;
  font-size: 1.65rem;
}

.movie-card:hover .card-overlay {
  opacity: 1;
}

.duration-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.duration-badge {
  right: 10px;
  bottom: 10px;
  padding: 4px 9px;
  background: rgba(2, 6, 23, 0.78);
}

.rank-badge {
  left: 10px;
  top: 10px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f97316, #eab308);
}

.card-body {
  padding: 15px;
}

.card-body h3,
.horizontal-info h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.card-body h3 a,
.horizontal-info h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card:hover h3 a {
  color: #60a5fa;
}

.card-body p,
.horizontal-info p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-stats,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 0.82rem;
}

.card-stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rail-scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 3px 2px 18px;
  scroll-snap-type: x proximity;
}

.horizontal-card {
  flex: 0 0 360px;
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 168px;
  scroll-snap-align: start;
}

.horizontal-cover {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.card-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 48px;
  height: 48px;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.24s ease;
}

.horizontal-card:hover .card-play {
  opacity: 1;
}

.horizontal-info {
  padding: 18px;
}

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

.category-card,
.category-overview-card,
.info-card,
.ranking-panel,
.search-panel,
.detail-article {
  background: rgba(30, 41, 59, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-card {
  min-height: 145px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(8, 145, 178, 0.12)),
    rgba(30, 41, 59, 0.65);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.36);
}

.category-card span,
.category-overview-card h2 {
  display: block;
  color: #fff;
  font-weight: 850;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.category-card p,
.category-overview-card p,
.footer-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.ranking-panel {
  position: sticky;
  top: 106px;
  padding: 22px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 32px 58px 1fr;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  border-radius: 14px;
  padding: 8px;
  transition: background 0.2s ease;
}

.rank-row:hover {
  background: rgba(15, 23, 42, 0.58);
}

.rank-row img {
  width: 58px;
  height: 78px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-number {
  color: #f97316;
  font-weight: 900;
  text-align: center;
}

.rank-info strong,
.rank-info em {
  display: block;
}

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

.rank-info em {
  margin-top: 4px;
  color: var(--soft);
  font-size: 0.78rem;
  font-style: normal;
}

.page-hero {
  display: grid;
  align-items: end;
  min-height: 280px;
  padding: 72px 0 46px;
}

.compact-page-hero,
.ranking-hero {
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 22rem),
    linear-gradient(90deg, rgba(30, 64, 175, 0.26), rgba(8, 47, 73, 0.1));
  border-bottom: 1px solid rgba(96, 165, 250, 0.12);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 18px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  height: 150px;
  overflow: hidden;
  border-radius: 15px;
}

.category-cover-stack img {
  min-height: 72px;
}

.text-button {
  margin-top: 14px;
}

.toolbar {
  align-items: center;
}

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

.filter-chips a,
.sort-select,
.search-panel select,
.search-panel input,
.search-panel button {
  min-height: 42px;
  padding: 0 15px;
}

.filter-chips a {
  display: inline-flex;
  align-items: center;
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.13);
}

.sort-select {
  width: 150px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 160px 120px;
  gap: 12px;
  margin-bottom: 26px;
  padding: 18px;
}

.search-panel button {
  color: #fff;
  border: 0;
  background: linear-gradient(90deg, #2563eb, #0891b2);
}

.empty-state {
  display: none;
  margin: 24px 0 0;
  padding: 30px;
  color: var(--muted);
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.55);
}

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

.movie-card.is-hidden {
  display: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 0 18px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.breadcrumb a:hover {
  color: #60a5fa;
}

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

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

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

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: #020617;
  cursor: pointer;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

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

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

.player-shadow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 22rem),
    linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.24));
}

.big-play {
  position: absolute;
  width: 86px;
  height: 86px;
  font-size: 2.5rem;
  transition: transform 0.24s ease;
}

.player-cover:hover .big-play {
  transform: scale(1.08);
}

.detail-article {
  margin-top: 24px;
  padding: 28px;
}

.detail-article h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.detail-one-line {
  margin: 14px 0 18px;
  color: #dbeafe;
  font-size: 1.08rem;
  line-height: 1.8;
}

.detail-article h2,
.info-card h2 {
  margin: 28px 0 12px;
  color: #fff;
  font-size: 1.35rem;
}

.detail-article p {
  color: var(--muted);
  line-height: 1.9;
}

.detail-sidebar {
  display: grid;
  gap: 18px;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: #111827;
}

.info-card {
  padding: 22px;
}

.info-card h2 {
  margin-top: 0;
}

.info-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-card dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.info-card dt {
  color: #94a3b8;
}

.info-card dd {
  margin: 0;
  color: #e0f2fe;
}

.related-section {
  padding-top: 36px;
}

.site-footer {
  margin-top: 36px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.7), #020617);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
  padding: 42px 0 28px;
}

.footer-logo {
  color: #60a5fa;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

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

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: #60a5fa;
}

.footer-bottom {
  padding: 18px 0 26px;
  color: #64748b;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

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

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

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

  .ranking-panel {
    position: static;
  }
}

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

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

  .hero-carousel {
    height: 520px;
  }

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

  .hero-arrow {
    display: none;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .catalog-grid,
  .compact-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 560px) {
  .topbar,
  .quick-cats-inner,
  .content-section,
  .footer-grid,
  .footer-bottom,
  .breadcrumb,
  .page-hero,
  .detail-layout {
    width: min(100% - 22px, 1180px);
  }

  .brand {
    font-size: 1.05rem;
  }

  .hero-carousel {
    height: 500px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

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

  .category-grid,
  .movie-grid,
  .catalog-grid,
  .compact-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-card {
    flex-basis: 310px;
  }

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