* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #e5e7eb;
  background: linear-gradient(180deg, #020617 0%, #0f172a 46%, #000000 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.36);
}

.brand-text {
  font-size: 20px;
  color: #ffffff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #cbd5e1;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: #22d3ee;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(71, 85, 105, 0.9);
  border-radius: 12px;
}

.hero-slider {
  position: relative;
  height: 74vh;
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(2, 6, 23, 0.58) 48%, rgba(2, 6, 23, 0.12) 100%), linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.2) 48%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 82px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.14);
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 14px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #cbd5e1;
  font-size: 19px;
}

.hero-tags,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-tags span,
.detail-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 12px;
  backdrop-filter: blur(12px);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, #06b6d4, #2563eb);
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.32);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px) scale(1.02);
}

.ghost-button {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(12px);
}

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

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

.hero-dot.is-active {
  width: 32px;
  background: #22d3ee;
}

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

.quick-search {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.72));
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.quick-search h2,
.section-title h2,
.page-hero h1,
.player-section h2,
.content-card h2 {
  margin: 0;
  color: #ffffff;
}

.quick-search p,
.page-hero p {
  margin: 8px 0 0;
  color: #94a3b8;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 12px;
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-height: 48px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(71, 85, 105, 0.8);
  border-radius: 16px;
  padding: 0 16px;
  outline: none;
}

.search-panel input:focus,
.search-panel select:focus {
  border-color: #22d3ee;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.16);
}

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

.section-title h2 {
  margin-top: 10px;
  font-size: clamp(26px, 3.8vw, 40px);
  letter-spacing: -0.04em;
}

.section-title a {
  color: #67e8f9;
  font-weight: 900;
}

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

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

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

.movie-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(51, 65, 85, 0.86);
  border-radius: 20px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover,
.wide-card:hover,
.rank-item:hover,
.category-tile:hover,
.category-large:hover {
  border-color: rgba(34, 211, 238, 0.9);
  box-shadow: 0 18px 50px rgba(6, 182, 212, 0.16);
  transform: translateY(-4px);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #020617);
}

.movie-card-landscape .card-cover {
  aspect-ratio: 16 / 9;
}

.movie-card-small .card-cover {
  aspect-ratio: 3 / 4;
}

.card-cover img,
.wide-cover img,
.rank-thumb img,
.detail-poster img,
.rank-feature img {
  transition: transform 0.32s ease;
}

.movie-card:hover img,
.wide-card:hover img,
.rank-feature:hover img {
  transform: scale(1.08);
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%);
}

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: rgba(6, 182, 212, 0.88);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.duration-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 9px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 13px;
}

.card-title,
.wide-title {
  display: -webkit-box;
  overflow: hidden;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  gap: 6px;
  color: #94a3b8;
  font-size: 12px;
}

.card-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 6px;
  color: #475569;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span,
.tag-cloud a {
  color: #a5f3fc;
  background: rgba(6, 182, 212, 0.14);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 12px;
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  color: #94a3b8;
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-score {
  margin-top: auto;
  color: #facc15;
  font-weight: 900;
}

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

.wide-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.86));
  border: 1px solid rgba(51, 65, 85, 0.86);
  border-radius: 22px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.wide-cover {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.wide-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px 14px 0;
}

.wide-desc {
  display: -webkit-box;
  overflow: hidden;
  color: #94a3b8;
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wide-meta {
  margin-top: auto;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 800;
}

.category-entry {
  padding: 30px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.58));
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 30px;
}

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

.category-tile,
.category-large {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.26), transparent 36%), linear-gradient(135deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(51, 65, 85, 0.86);
  border-radius: 22px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.category-tile span,
.category-name {
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
}

.category-tile em,
.category-copy {
  color: #94a3b8;
  font-size: 13px;
  font-style: normal;
}

.rank-and-scroll {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.rank-panel,
.scroll-panel,
.content-card,
.player-section {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.86));
  border: 1px solid rgba(51, 65, 85, 0.86);
  border-radius: 26px;
  padding: 22px;
}

.compact-title {
  margin-bottom: 16px;
}

.compact-title h2 {
  font-size: 28px;
}

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

.rank-list-page {
  margin-top: 22px;
}

.rank-item {
  display: grid;
  grid-template-columns: 42px 68px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(51, 65, 85, 0.72);
  border-radius: 18px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.rank-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #020617;
  background: linear-gradient(135deg, #facc15, #fb923c);
  border-radius: 12px;
  font-weight: 950;
}

.rank-thumb {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 12px;
  background: #020617;
}

.rank-info {
  min-width: 0;
}

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

.rank-info strong {
  color: #ffffff;
}

.rank-info em {
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
}

.rank-score {
  color: #facc15;
  font-weight: 900;
}

.horizontal-row {
  display: grid;
  grid-auto-columns: 210px;
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.horizontal-row .movie-card {
  scroll-snap-align: start;
}

.page-main {
  padding-bottom: 72px;
}

.page-hero {
  margin-top: 42px;
  padding: 40px;
  background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.24), transparent 34%), linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(2, 6, 23, 0.9));
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 30px;
}

.page-hero h1 {
  margin-top: 16px;
  max-width: 820px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
}

.page-search {
  max-width: 760px;
  margin-top: 24px;
}

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

.category-large {
  min-height: 190px;
}

.category-arrow {
  margin-top: 8px;
  color: #67e8f9;
  font-weight: 900;
}

.rank-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.rank-feature {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 24px;
}

.rank-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 62%);
}

.rank-feature span {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

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

.rank-feature strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.rank-feature em {
  display: -webkit-box;
  overflow: hidden;
  color: #cbd5e1;
  font-size: 13px;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 62px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: blur(22px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.38;
}

.detail-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.36), #020617 92%);
}

.detail-shell {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 24px;
}

.breadcrumb a:hover {
  color: #22d3ee;
}

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

.detail-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
}

.detail-poster span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: #facc15;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 999px;
  padding: 6px 11px;
  font-weight: 950;
}

.detail-info h1 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.lead-text {
  max-width: 820px;
  color: #dbeafe;
  font-size: 19px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.detail-play-link {
  margin-top: 28px;
}

.player-section {
  margin-top: 0;
}

.player-section h2 {
  margin-bottom: 16px;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 22px;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #ffffff;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2), rgba(0, 0, 0, 0.68));
  text-align: center;
  transition: opacity 0.25s ease;
}

.player-box.is-ready .player-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(6, 182, 212, 0.36);
  cursor: pointer;
}

.player-overlay strong {
  font-size: 20px;
}

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

.content-card p {
  margin-bottom: 0;
  color: #cbd5e1;
}

.detail-switch {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-switch a {
  padding: 16px;
  color: #e0f2fe;
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(51, 65, 85, 0.86);
  border-radius: 18px;
}

.site-footer {
  margin-top: 72px;
  padding: 34px 0;
  color: #94a3b8;
  background: rgba(2, 6, 23, 0.92);
  border-top: 1px solid rgba(51, 65, 85, 0.84);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-shell strong {
  color: #ffffff;
  font-size: 20px;
}

.footer-shell p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a:hover {
  color: #22d3ee;
}

.filter-empty {
  display: none;
  margin: 28px 0 0;
  padding: 20px;
  color: #cbd5e1;
  text-align: center;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(51, 65, 85, 0.86);
  border-radius: 18px;
}

body.has-empty-filter .filter-empty {
  display: block;
}

.movie-card.is-hidden,
.wide-card.is-hidden,
.rank-item.is-hidden {
  display: none;
}

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

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

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

  .rank-and-scroll {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(51, 65, 85, 0.9);
    border-radius: 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .hero-slider {
    height: 72vh;
    min-height: 520px;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .quick-search,
  .search-panel,
  .detail-grid,
  .detail-content,
  .detail-switch,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

  .wide-grid,
  .category-grid,
  .category-large-grid,
  .rank-feature-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-poster {
    width: min(260px, 72vw);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .shell,
  .nav-shell,
  .footer-shell {
    width: min(100% - 22px, 1180px);
  }

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

  .hero-slider {
    min-height: 560px;
  }

  .hero-content h1,
  .detail-info h1 {
    letter-spacing: -0.04em;
  }

  .hero-content p,
  .lead-text {
    font-size: 16px;
  }

  .quick-search,
  .page-hero,
  .category-entry,
  .rank-panel,
  .scroll-panel,
  .content-card,
  .player-section {
    padding: 18px;
    border-radius: 22px;
  }

  .poster-grid,
  .catalog-grid,
  .compact-grid {
    gap: 12px;
  }

  .card-body {
    padding: 10px;
  }

  .rank-item {
    grid-template-columns: 34px 56px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }
}
