:root {
  --color-primary: 14 165 233;
  --color-secondary: 249 115 22;
  --color-accent: 34 197 94;
  --color-neutral-50: 250 250 250;
  --color-neutral-100: 245 245 245;
  --color-neutral-200: 229 229 229;
  --color-neutral-300: 212 212 212;
  --color-neutral-400: 163 163 163;
  --color-neutral-500: 115 115 115;
  --color-neutral-600: 82 82 82;
  --color-neutral-700: 64 64 64;
  --color-neutral-800: 38 38 38;
  --color-neutral-900: 23 23 23;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: rgb(var(--color-neutral-50));
  color: rgb(var(--color-neutral-900));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.container-custom {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgb(var(--color-neutral-200));
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, rgb(var(--color-primary)), rgb(var(--color-accent)));
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.24);
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(135deg, rgb(2, 132, 199), rgb(5, 150, 105));
  -webkit-background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  color: rgb(var(--color-neutral-700));
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  background: rgb(240, 249, 255);
  color: rgb(2, 132, 199);
}

.header-search {
  display: flex;
  align-items: center;
  width: 260px;
  border-radius: 12px;
  background: rgb(var(--color-neutral-100));
  overflow: hidden;
}

.header-search input,
.mobile-search input,
.hero-search input,
.filter-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgb(var(--color-neutral-900));
}

.header-search input {
  padding: 10px 12px;
}

.header-search button,
.mobile-search button,
.hero-search button {
  border: 0;
  color: white;
  background: rgb(var(--color-primary));
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover {
  background: rgb(2, 132, 199);
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgb(240, 249, 255);
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: rgb(2, 132, 199);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: 0 0 18px;
  border-top: 1px solid rgb(var(--color-neutral-200));
}

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

.mobile-search {
  display: flex;
  margin: 16px 0;
  border-radius: 12px;
  background: rgb(var(--color-neutral-100));
  overflow: hidden;
}

.mobile-search input {
  padding: 12px;
}

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

.hero-wrap {
  padding: 32px 0 46px;
  background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.12), transparent 28%), radial-gradient(circle at 80% 10%, rgba(34, 197, 94, 0.12), transparent 30%);
}

.hero-carousel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  background: rgb(var(--color-neutral-900));
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2);
}

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.hero-slide.is-active .hero-bg {
  transform: scale(1.1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.5) 46%, rgba(0, 0, 0, 0.08)), linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 55%);
}

.hero-content {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 760px;
  padding: 0 34px 46px;
  color: white;
}

.hero-kicker,
.category-badge,
.tag-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-kicker {
  margin-bottom: 14px;
  padding: 8px 14px;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 18px;
  color: rgb(229, 229, 229);
  font-size: 18px;
  line-height: 1.72;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: rgb(245, 245, 245);
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.hero-actions,
.card-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

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

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: rgb(var(--color-primary));
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.28);
}

.btn-secondary {
  color: rgb(var(--color-neutral-900));
  background: rgb(var(--color-neutral-200));
}

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

.hero-play {
  position: absolute;
  right: 42px;
  bottom: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: rgb(2, 132, 199);
  background: rgba(255, 255, 255, 0.92);
  font-size: 34px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
}

.hero-play:hover {
  transform: scale(1.08);
}

.hero-dots {
  position: absolute;
  left: 34px;
  top: 28px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

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

.hero-dot.is-active {
  width: 52px;
  background: white;
}

.hero-quick {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 18px;
  margin-top: 18px;
}

.hero-search {
  display: flex;
  min-height: 58px;
  border: 1px solid rgb(var(--color-neutral-200));
  border-radius: 18px;
  background: white;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.hero-search input {
  padding: 0 18px;
}

.hero-search button {
  padding: 0 22px;
  font-weight: 800;
}

.hero-mini-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.hero-mini {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  color: rgb(var(--color-neutral-800));
  font-weight: 700;
}

.hero-mini img {
  width: 58px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, rgb(14, 165, 233), rgb(34, 197, 94));
}

.section-spacing {
  padding: 58px 0;
}

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

.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.section-title p {
  margin: 8px 0 0;
  color: rgb(var(--color-neutral-600));
}

.section-link {
  color: rgb(2, 132, 199);
  font-weight: 800;
}

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

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

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

.card,
.category-card,
.info-card,
.rank-card {
  overflow: hidden;
  border: 1px solid rgb(var(--color-neutral-200));
  border-radius: 18px;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-hover:hover,
.category-card:hover,
.rank-card:hover {
  transform: translateY(-4px);
  border-color: rgb(186, 230, 253);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.movie-card {
  display: block;
}

.movie-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(14, 165, 233), rgb(34, 197, 94));
}

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

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

.duration-badge,
.play-badge,
.rank-number {
  position: absolute;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.duration-badge {
  right: 10px;
  top: 10px;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
}

.play-badge {
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: rgb(2, 132, 199);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-body {
  padding: 16px;
}

.category-badge {
  margin-bottom: 10px;
  padding: 5px 10px;
  color: rgb(3, 105, 161);
  background: rgb(240, 249, 255);
}

.movie-body h3 {
  display: -webkit-box;
  min-height: 46px;
  margin: 0 0 8px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.03em;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-body h3 {
  color: rgb(2, 132, 199);
}

.movie-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 14px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: rgb(var(--color-neutral-600));
  font-size: 14px;
  line-height: 1.55;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgb(var(--color-neutral-500));
  font-size: 13px;
  font-weight: 650;
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 290px 1fr;
  border: 1px solid rgb(var(--color-neutral-200));
  border-radius: 18px;
  background: white;
  overflow: hidden;
}

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

.gradient-panel {
  background: linear-gradient(135deg, rgb(240, 249, 255), rgb(236, 253, 245));
}

.dark-panel {
  color: white;
  background: rgb(var(--color-neutral-900));
}

.dark-panel .section-title p,
.dark-panel .movie-body p,
.dark-panel .movie-meta {
  color: rgb(212, 212, 212);
}

.dark-panel .card,
.dark-panel .movie-card-horizontal {
  border-color: rgb(var(--color-neutral-800));
  background: rgb(38, 38, 38);
}

.dark-panel .movie-body h3 {
  color: white;
}

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

.category-card {
  display: block;
  padding: 22px;
}

.category-card h2,
.category-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.category-card p {
  margin: 0 0 18px;
  color: rgb(var(--color-neutral-600));
  line-height: 1.7;
}

.category-card span {
  color: rgb(2, 132, 199);
  font-weight: 800;
}

.page-hero {
  padding: 58px 0;
  color: white;
  background: linear-gradient(135deg, rgb(14, 165, 233), rgb(16, 185, 129));
}

.page-hero.amber {
  background: linear-gradient(135deg, rgb(245, 158, 11), rgb(239, 68, 68));
}

.page-hero.dark {
  background: linear-gradient(135deg, rgb(23, 23, 23), rgb(14, 165, 233));
}

.page-hero h1 {
  max-width: 920px;
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.75;
}

.tool-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.filter-input,
.sort-select {
  min-height: 44px;
  border: 1px solid rgb(var(--color-neutral-300));
  border-radius: 12px;
  background: white;
}

.filter-input {
  max-width: 360px;
  padding: 0 14px;
}

.sort-select {
  padding: 0 14px;
  color: rgb(var(--color-neutral-800));
}

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

.rank-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 18px 12px 12px;
}

.rank-card img {
  width: 120px;
  height: 74px;
  border-radius: 14px;
  object-fit: cover;
  background: linear-gradient(135deg, rgb(14, 165, 233), rgb(34, 197, 94));
}

.rank-number {
  left: 18px;
  top: 18px;
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(245, 158, 11), rgb(249, 115, 22));
  font-weight: 900;
}

.rank-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.rank-card p {
  margin: 0;
  color: rgb(var(--color-neutral-600));
  line-height: 1.55;
}

.rank-score {
  color: rgb(217, 119, 6);
  font-size: 24px;
  font-weight: 900;
}

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

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: black;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

.player-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.66));
  cursor: pointer;
  transition: opacity 0.25s ease;
}

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

.player-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 20px;
  font-weight: 900;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: none;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.62);
  font-size: 14px;
}

.player-status.is-visible {
  display: inline-flex;
}

.detail-title {
  margin: 26px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.detail-lead {
  max-width: 880px;
  color: rgb(var(--color-neutral-600));
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgb(var(--color-neutral-500));
  font-size: 14px;
}

.breadcrumb a {
  color: rgb(2, 132, 199);
  font-weight: 700;
}

.info-card {
  padding: 20px;
}

.info-card + .info-card {
  margin-top: 18px;
}

.info-card h2,
.info-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

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

.info-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(var(--color-neutral-200));
}

.info-card dt {
  color: rgb(var(--color-neutral-600));
}

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

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

.tag-pill {
  padding: 7px 11px;
  color: rgb(var(--color-neutral-700));
  background: rgb(var(--color-neutral-100));
}

.tag-pill:hover {
  color: rgb(2, 132, 199);
  background: rgb(240, 249, 255);
}

.article-card {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid rgb(var(--color-neutral-200));
  border-radius: 22px;
  background: white;
}

.article-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.article-card p {
  margin: 0;
  color: rgb(var(--color-neutral-700));
  font-size: 17px;
  line-height: 1.88;
  white-space: pre-line;
}

.search-summary {
  margin-bottom: 22px;
  color: rgb(var(--color-neutral-600));
  font-weight: 700;
}

.empty-state {
  padding: 72px 20px;
  border: 1px solid rgb(var(--color-neutral-200));
  border-radius: 24px;
  background: white;
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 10px;
}

.empty-state p {
  margin: 0 0 24px;
  color: rgb(var(--color-neutral-600));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  padding-top: 46px;
  padding-bottom: 34px;
}

.site-footer {
  color: rgb(212, 212, 212);
  background: rgb(var(--color-neutral-900));
}

.footer-about p {
  max-width: 520px;
  color: rgb(163, 163, 163);
  line-height: 1.75;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: white;
  font-size: 17px;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgb(212, 212, 212);
}

.site-footer a:hover {
  color: rgb(125, 211, 252);
}

.footer-bottom {
  padding: 20px 16px 28px;
  border-top: 1px solid rgb(var(--color-neutral-800));
  color: rgb(115, 115, 115);
}

.footer-bottom p {
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.45s ease both;
}

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

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

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

  .detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero-carousel,
  .hero-bg {
    min-height: 520px;
  }

  .hero-content {
    padding: 0 22px 34px;
  }

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

  .hero-play {
    right: 22px;
    bottom: 28px;
    width: 64px;
    height: 64px;
    font-size: 26px;
  }

  .hero-quick {
    grid-template-columns: 1fr;
  }

  .hero-mini-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .movie-card-horizontal {
    grid-template-columns: 1fr;
  }

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

  .rank-card {
    grid-template-columns: 92px 1fr;
  }

  .rank-card img {
    width: 92px;
    height: 62px;
  }

  .rank-score {
    grid-column: 2;
    font-size: 18px;
  }
}

@media (max-width: 580px) {
  .container-custom {
    padding: 0 14px;
  }

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

  .hero-wrap {
    padding-top: 20px;
  }

  .hero-carousel,
  .hero-bg {
    min-height: 500px;
    border-radius: 20px;
  }

  .hero-gradient {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.16));
  }

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

  .hero-tags {
    gap: 7px;
  }

  .hero-actions .btn,
  .page-actions .btn {
    width: 100%;
  }

  .hero-dots {
    left: 22px;
    top: 22px;
  }

  .hero-play {
    display: none;
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-search input,
  .hero-search button {
    min-height: 50px;
  }

  .hero-mini-list,
  .movie-grid,
  .movie-grid.three,
  .movie-grid.two,
  .category-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .tool-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-input,
  .sort-select {
    width: 100%;
    max-width: none;
  }

  .section-spacing {
    padding: 42px 0;
  }
}
