* {
  box-sizing: border-box;
}

:root {
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --blue: #2563eb;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f8fafc;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #f1f5f9 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.42));
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #ffffff;
  font-size: 15px;
  box-shadow: 0 12px 24px rgba(6, 182, 212, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 650;
  color: #374151;
}

.nav-link,
.nav-cats a,
.mobile-link {
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-cats a:hover,
.mobile-link:hover,
.mobile-link.active {
  color: var(--cyan-dark);
}

.nav-cats {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 8px;
  color: #4b5563;
  font-size: 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-search {
  position: relative;
}

.site-search-input,
.page-filter-input,
.category-filter,
.sort-select,
.big-search input {
  border: 1px solid var(--line);
  outline: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search-input {
  width: 270px;
  padding: 11px 16px;
}

.site-search-input:focus,
.page-filter-input:focus,
.category-filter:focus,
.sort-select:focus,
.big-search input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 360px;
  max-height: 420px;
  overflow: auto;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 8px;
}

.search-hit {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 14px;
}

.search-hit:hover {
  background: #f8fafc;
}

.search-hit img {
  width: 74px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}

.search-hit strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.search-hit span {
  color: var(--muted);
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #eef2ff;
  color: #1f2937;
}

.mobile-menu {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.mobile-search {
  position: relative;
  margin-bottom: 12px;
}

.mobile-search .site-search-input {
  width: 100%;
}

.mobile-link {
  display: block;
  padding: 11px 8px;
  font-weight: 700;
  color: #374151;
}

.page-main,
.detail-main {
  padding-top: 76px;
}

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

.hero-stage,
.hero-slide,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

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

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.08));
}

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

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 20px;
  color: #e5e7eb;
  font-size: 19px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.22);
  backdrop-filter: blur(12px);
  color: #a5f3fc;
  font-size: 14px;
  font-weight: 700;
}

.hero-tags,
.detail-tags,
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag,
.detail-tags span,
.category-chips a,
.small-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
}

.tag {
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(10px);
  font-size: 13px;
}

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

.primary-btn,
.ghost-btn,
.big-search button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.big-search button {
  padding: 13px 28px;
  color: #ffffff;
  border: 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

.ghost-btn {
  padding: 12px 22px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.big-search button:hover,
.section-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(37, 99, 235, 0.30);
}

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

.hero-dot {
  width: 18px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 38px;
  background: #ffffff;
}

.quick-panel,
.content-section,
.toolbar-section,
.detail-layout,
.detail-related,
.category-overview-grid,
.sitemap-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.quick-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  padding: 46px 0 16px;
}

.quick-search-card,
.quick-category-card,
.text-card,
.info-card,
.category-box,
.sitemap-group {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.quick-search-card,
.quick-category-card {
  padding: 30px;
}

.quick-search-card h2,
.quick-category-card h2,
.section-head h2,
.text-card h2,
.info-card h2,
.category-box h2,
.sitemap-group h2 {
  margin: 0 0 8px;
  line-height: 1.2;
  font-weight: 900;
  color: #0f172a;
}

.quick-search-card h2,
.quick-category-card h2,
.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.quick-search-card p,
.quick-category-card p,
.section-head p,
.text-card p,
.category-box p,
.sitemap-group p {
  margin: 0;
  color: var(--muted);
}

.big-search {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.big-search input {
  min-width: 0;
  flex: 1;
  padding: 14px 18px;
}

.category-chips a {
  padding: 9px 15px;
  background: #ecfeff;
  color: #0e7490;
}

.category-chips a:hover {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: #ffffff;
}

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

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

.section-more {
  flex: none;
  padding: 10px 18px;
  background: #ecfeff;
  color: #0e7490;
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.movie-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #155e75);
}

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

.movie-card:hover .movie-thumb img {
  transform: scale(1.08);
}

.thumb-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
  transition: opacity 0.25s ease;
}

.movie-card:hover .thumb-shade {
  opacity: 1;
}

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

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

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

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

.movie-card-meta,
.movie-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pill {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ecfeff;
  color: #0e7490;
  font-size: 12px;
  font-weight: 800;
}

.rating {
  color: #f59e0b;
  font-size: 13px;
  font-weight: 800;
}

.movie-card h3 {
  margin: 12px 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--cyan-dark);
}

.movie-card p {
  display: -webkit-box;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-foot {
  color: #64748b;
  font-size: 12px;
}

.small-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

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

.large-card .movie-card-body {
  padding: 22px;
}

.large-card h3 {
  font-size: 21px;
}

.rank-card-wrap {
  position: relative;
}

.rank-card-wrap > span,
.rank-no {
  position: absolute;
  z-index: 5;
  top: -12px;
  left: -12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.34);
}

.horizontal-list {
  display: grid;
  gap: 16px;
}

.horizontal-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 140px;
}

.horizontal-card .movie-thumb {
  height: 100%;
  aspect-ratio: auto;
}

.horizontal-card .movie-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gradient-banner,
.inner-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  border-radius: 30px;
  background: linear-gradient(120deg, var(--cyan), var(--blue));
  color: #ffffff;
  box-shadow: 0 26px 60px rgba(37, 99, 235, 0.28);
}

.gradient-banner {
  padding: 48px;
  text-align: center;
}

.gradient-banner h2,
.inner-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 900;
}

.gradient-banner p,
.inner-hero p {
  margin: 0 auto 24px;
  max-width: 760px;
  color: #e0f7ff;
  font-size: 18px;
}

.gradient-banner div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.gradient-banner a {
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #0e7490;
  font-weight: 800;
}

.inner-hero {
  padding: 54px;
  margin-top: 110px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.crumbs a:hover {
  color: #ffffff;
}

.crumbs.dark {
  color: #cbd5e1;
}

.toolbar-section {
  padding: 34px 0 12px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.page-filter-input {
  flex: 1 1 320px;
  padding: 13px 18px;
}

.category-filter,
.sort-select {
  min-width: 176px;
  padding: 13px 18px;
}

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

.category-box {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  padding: 18px;
}

.category-cover {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 20px;
  background: #0f172a;
}

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

.category-cover span {
  position: absolute;
  inset: auto 12px 12px 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #ffffff;
  text-align: center;
  font-weight: 900;
}

.category-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.category-mini-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 13px;
}

.player-band {
  padding: 98px 0 34px;
  background: linear-gradient(180deg, #0f172a, #1f2937);
}

.player-shell,
.detail-layout,
.detail-related {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.70));
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

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

.big-play {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 22px 42px rgba(6, 182, 212, 0.32);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.92fr);
  gap: 32px;
  padding: 42px 0;
}

.detail-content h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  color: #64748b;
  font-weight: 700;
}

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

.detail-tags span {
  padding: 8px 12px;
  background: #f1f5f9;
  color: #475569;
  font-size: 13px;
}

.text-card,
.info-card {
  padding: 26px;
  margin-bottom: 22px;
}

.text-card p {
  color: #374151;
  font-size: 16px;
}

.blue-card {
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.info-card {
  position: sticky;
  top: 96px;
}

.info-card + .info-card {
  position: static;
}

.info-card dl {
  margin: 0;
}

.info-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f7;
}

.info-card div:last-child {
  border-bottom: 0;
}

.info-card dt {
  color: var(--muted);
}

.info-card dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.side-related .horizontal-card {
  grid-template-columns: 116px 1fr;
  min-height: 92px;
  margin-bottom: 12px;
  border-radius: 14px;
}

.side-related .movie-card-body {
  padding: 10px;
}

.side-related .movie-card p,
.side-related .movie-card-foot,
.side-related .small-tags,
.side-related .duration,
.side-related .rating {
  display: none;
}

.side-related .movie-card h3 {
  margin: 5px 0;
  font-size: 14px;
}

.sitemap-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 48px 0 80px;
}

.sitemap-group {
  padding: 24px;
}

.sitemap-group ul {
  columns: 2;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sitemap-group li {
  break-inside: avoid;
  margin: 0 0 8px;
  color: #475569;
  font-size: 14px;
}

.sitemap-group a:hover {
  color: var(--cyan-dark);
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand {
  font-size: 21px;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: #64748b;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--cyan-dark);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 34px;
  border-top: 1px solid #dce3ea;
  text-align: center;
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

.is-filtered-out {
  display: none !important;
}

@media (max-width: 1080px) {
  .nav-cats,
  .top-search {
    display: none;
  }

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

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

  .quick-panel,
  .detail-layout,
  .footer-grid,
  .category-overview-grid,
  .sitemap-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .brand {
    font-size: 21px;
  }

  .hero-carousel {
    height: 560px;
  }

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

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

  .quick-panel,
  .content-section,
  .toolbar-section,
  .detail-layout,
  .detail-related,
  .category-overview-grid,
  .sitemap-wrap {
    width: min(100% - 24px, 1180px);
  }

  .movie-grid,
  .rank-grid,
  .large-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .horizontal-card,
  .category-box {
    grid-template-columns: 1fr;
  }

  .horizontal-card .movie-thumb {
    aspect-ratio: 16 / 9;
  }

  .inner-hero,
  .gradient-banner {
    width: min(100% - 24px, 1180px);
    padding: 32px 22px;
    border-radius: 22px;
  }

  .big-search,
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .page-filter-input,
  .category-filter,
  .sort-select {
    width: 100%;
  }

  .player-band {
    padding-top: 88px;
  }

  .footer-grid {
    width: min(100% - 24px, 1180px);
  }
}

@media (max-width: 520px) {
  .movie-grid,
  .rank-grid,
  .large-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .sitemap-group ul {
    columns: 1;
  }
}
