:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --amber: #f59e0b;
  --cream: #fff7ed;
  --soft: #fffbeb;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(154, 84, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(255, 247, 237, 0.95), rgba(254, 243, 199, 0.94));
  border-bottom: 1px solid rgba(251, 191, 36, 0.28);
  box-shadow: 0 8px 28px rgba(146, 64, 14, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark,
.footer-brand span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.32);
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 22px;
  background: linear-gradient(90deg, #ea580c, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
}

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

.nav-link {
  color: #4b5563;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange-dark);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.header-search input,
.mobile-search input,
.wide-search input,
.filter-inner input,
.filter-inner select {
  border: 0;
  outline: 0;
  background: #ffffff;
  color: var(--ink);
}

.header-search input {
  width: 210px;
  padding: 8px 12px;
  border-radius: 999px;
}

.header-search button,
.mobile-search button,
.wide-search button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.25);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  background: #ffedd5;
  color: var(--orange-dark);
  width: 44px;
  height: 44px;
  font-size: 22px;
}

.mobile-menu {
  border-top: 1px solid #fed7aa;
  padding: 16px;
  background: #fff7ed;
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 999px;
}

.mobile-menu-link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: #4b5563;
  font-weight: 700;
}

.mobile-menu-link:hover {
  background: #ffedd5;
  color: var(--orange-dark);
}

.hero-slider {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(124, 45, 18, 0.74), rgba(17, 24, 39, 0.36)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

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

.hero-backdrop,
.detail-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(251, 146, 60, 0.45), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(245, 158, 11, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.76));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}

.hero-copy {
  max-width: 760px;
  color: #ffffff;
}

.eyebrow,
.page-hero span,
.section-heading span,
.panel-title span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #ffedd5;
  background: rgba(255, 237, 213, 0.18);
  border: 1px solid rgba(255, 237, 213, 0.25);
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions,
.detail-title-block .primary-button {
  margin-top: 30px;
}

.primary-button,
.ghost-button,
.panel-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.34);
}

.ghost-button {
  margin-left: 12px;
  color: #fff7ed;
  border: 1px solid rgba(255, 237, 213, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 34px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 900;
  font-size: 28px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.hero-prev,
.hero-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
}

.hero-dot.active {
  width: 32px;
  border-radius: 999px;
  background: #fb923c;
}

.search-band {
  margin-top: -42px;
  position: relative;
  z-index: 8;
}

.search-band-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.search-band h2,
.section-heading h2,
.panel-title h2,
.page-hero h1,
.text-panel h2,
.side-box h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.14;
}

.search-band p,
.page-hero p {
  margin: 8px 0 0;
  color: var(--muted);
}

.wide-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.wide-search input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
}

.section-block {
  padding: 70px 0;
}

.soft-block {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.8), rgba(255, 255, 255, 0.92));
}

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

.section-heading a,
.panel-link,
.text-link {
  color: var(--orange-dark);
  background: #ffedd5;
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #111827;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 0.45s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.category-tile strong,
.category-tile em {
  display: block;
}

.category-tile strong {
  font-size: 20px;
}

.category-tile em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 13px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid rgba(254, 215, 170, 0.84);
  box-shadow: 0 12px 30px rgba(154, 84, 23, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(154, 84, 23, 0.18);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111827;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

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

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

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.84);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-type,
.movie-duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.movie-type {
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  background: #f97316;
}

.movie-duration {
  right: 12px;
  bottom: 12px;
  padding: 4px 9px;
  background: rgba(0, 0, 0, 0.66);
}

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

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

.movie-card-body h2 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card-body h2 a:hover {
  color: var(--orange-dark);
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #78716c;
  font-size: 12px;
}

.movie-meta span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff7ed;
}

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag-row span,
.detail-tags a {
  padding: 5px 9px;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 700;
}

.hot-panel,
.side-box,
.text-panel,
.player-card,
.category-overview-card {
  border: 1px solid rgba(254, 215, 170, 0.84);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hot-panel {
  position: sticky;
  top: 104px;
  padding: 22px;
}

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

.compact-card {
  display: grid;
  grid-template-columns: auto 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: #fff7ed;
  transition: transform 0.2s ease, background 0.2s ease;
}

.compact-card:hover {
  transform: translateX(4px);
  background: #ffedd5;
}

.compact-card img {
  width: 74px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
}

.compact-card strong,
.compact-card em {
  display: block;
}

.compact-card strong {
  line-height: 1.3;
}

.compact-card em {
  margin-top: 2px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.compact-rank {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: var(--orange);
  font-weight: 900;
  font-size: 13px;
}

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

.page-main {
  min-height: 60vh;
}

.page-hero {
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 14% 30%, rgba(251, 146, 60, 0.24), transparent 30%),
    linear-gradient(135deg, #fff7ed, #fffbeb 50%, #ffffff);
  border-bottom: 1px solid rgba(254, 215, 170, 0.8);
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 6vw, 68px);
}

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

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.quick-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-weight: 800;
}

.filter-bar {
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(254, 215, 170, 0.72);
}

.sticky-filter {
  position: sticky;
  top: 78px;
  z-index: 80;
  backdrop-filter: blur(14px);
}

.filter-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
}

.filter-inner input,
.filter-inner select {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
}

.filter-inner input {
  width: 100%;
}

.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;
  align-items: center;
}

.overview-covers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.overview-covers img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}

.category-overview-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-overview-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.detail-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(124, 45, 18, 0.78), rgba(17, 24, 39, 0.62)), var(--detail-image);
  background-size: cover;
  background-position: center;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 42px;
  align-items: center;
  padding: 56px 0;
  color: #ffffff;
}

.detail-cover {
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 2 / 3;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

.detail-title-block h1 {
  margin: 18px 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
}

.detail-title-block p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffedd5;
  background: rgba(255, 237, 213, 0.15);
  border: 1px solid rgba(255, 237, 213, 0.24);
}

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

.detail-content {
  display: grid;
  gap: 22px;
}

.player-card {
  padding: 14px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #111827;
  aspect-ratio: 16 / 9;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--orange-dark);
  background: radial-gradient(circle at center, rgba(255, 247, 237, 0.10), rgba(0, 0, 0, 0.42));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.play-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  font-size: 32px;
  font-weight: 900;
}

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

.text-panel {
  padding: 26px;
}

.text-panel h2,
.side-box h2 {
  font-size: 28px;
}

.text-panel p {
  margin: 14px 0 0;
  color: #4b5563;
  font-size: 17px;
}

.detail-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 104px;
}

.side-box {
  padding: 22px;
}

.side-box dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 14px;
  margin: 18px 0 0;
}

.side-box dt {
  color: var(--muted);
}

.side-box dd {
  margin: 0;
  font-weight: 800;
}

.side-box dd a {
  color: var(--orange-dark);
}

.site-footer {
  padding-top: 48px;
  border-top: 1px solid rgba(254, 215, 170, 0.85);
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 22px;
}

.site-footer p {
  color: var(--muted);
  margin: 0;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

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

.footer-links a {
  color: #7c2d12;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 36px;
  padding: 18px 16px;
  text-align: center;
  color: #9a3412;
  border-top: 1px solid rgba(251, 191, 36, 0.42);
}

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

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

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

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

  .hot-panel,
  .detail-side {
    position: static;
  }
}

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

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 720px;
    padding: 44px 0 84px;
  }

  .hero-poster {
    width: min(320px, 80vw);
    transform: none;
  }

  .search-band-inner,
  .filter-inner,
  .detail-hero-inner,
  .footer-grid,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    width: min(260px, 74vw);
  }

  .wide-list,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-mark,
  .footer-brand span {
    width: 40px;
    height: 40px;
    border-radius: 15px;
  }

  .hero-slider,
  .hero-content {
    min-height: 640px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy p,
  .page-hero p,
  .detail-title-block p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .ghost-button {
    margin-left: 0;
  }

  .category-grid,
  .movie-grid,
  .movie-grid-home {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 46px 0;
  }

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

  .filter-inner select {
    width: 100%;
  }

  .detail-hero-inner {
    min-height: auto;
  }

  .detail-title-block h1 {
    font-size: 36px;
  }
}
