:root {
  --page-bg: #fff7f3;
  --panel: #ffffff;
  --panel-soft: #fff1eb;
  --text: #1f2937;
  --muted: #6b7280;
  --brand: #dc2626;
  --brand-dark: #991b1b;
  --brand-soft: #fee2e2;
  --gold: #f59e0b;
  --line: #fee2e2;
  --shadow: 0 22px 60px rgba(127, 29, 29, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--page-bg) 46%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(127, 29, 29, 0.08);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.28);
}

.brand-name {
  font-size: 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  padding: 8px 14px;
  color: #4b5563;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #fecaca;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.08);
}

.header-search input,
.mobile-search input,
.intro-search input,
.toolbar input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

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

.header-search button,
.mobile-search button,
.intro-search button {
  border: 0;
  color: #ffffff;
  background: var(--brand);
  cursor: pointer;
  font-weight: 800;
}

.header-search button {
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--brand-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--brand-dark);
}

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

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search {
  display: flex;
  overflow: hidden;
  border: 1px solid #fecaca;
  border-radius: 999px;
  background: #ffffff;
}

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

.mobile-search button {
  padding: 12px 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 12% 10%, rgba(245, 158, 11, 0.45), transparent 26%), linear-gradient(135deg, #111827 0%, #7f1d1d 52%, #111827 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image: radial-gradient(circle at 78% 18%, rgba(220, 38, 38, 0.8), transparent 24%), radial-gradient(circle at 22% 88%, rgba(245, 158, 11, 0.62), transparent 30%);
  filter: blur(12px);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 58px 0 72px;
}

.hero-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.62fr);
  align-items: center;
  gap: 56px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-copy {
  max-width: 720px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.8);
  backdrop-filter: blur(16px);
}

.hero-label span {
  color: #fde68a;
  font-weight: 900;
}

.hero-label strong {
  color: #ffffff;
}

.hero h1,
.hero h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

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

.hero-tags {
  margin-top: 24px;
}

.hero-tags a,
.hero-tags span,
.detail-meta span,
.tag-cloud a {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero-tags a,
.hero-tags span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 34px rgba(220, 38, 38, 0.3);
}

.primary-button:hover,
.ghost-button:hover,
.movie-card:hover {
  transform: translateY(-3px);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.hero-poster {
  position: relative;
  display: block;
  width: min(360px, 100%);
  margin-left: auto;
  border: 5px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, #7f1d1d, #111827);
}

.hero-poster span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.hero-controls {
  position: absolute;
  left: 0;
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 36px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #ffffff;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 24px;
  align-items: center;
  margin-top: -38px;
  padding: 28px;
  position: relative;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intro-panel h2,
.section-heading h2,
.ranking-head h2,
.detail-content h2,
.player-info h2,
.category-overview-body h2 {
  margin: 0;
  color: #111827;
  line-height: 1.2;
}

.intro-panel p,
.section-heading p,
.category-overview-body p,
.player-info p,
.detail-content p,
.detail-one-line,
.page-hero p {
  color: var(--muted);
}

.intro-search {
  display: flex;
  overflow: hidden;
  border: 1px solid #fecaca;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.intro-search input {
  padding: 14px 18px;
}

.intro-search button {
  padding: 14px 22px;
}

.page-section {
  padding: 62px 0 0;
}

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

.section-kicker {
  display: inline-block;
  width: 42px;
  height: 5px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--gold));
}

.section-heading h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.section-heading p {
  max-width: 680px;
  margin: 10px 0 0;
}

.section-link {
  flex: 0 0 auto;
  color: var(--brand);
  font-weight: 900;
}

.section-link span {
  font-size: 22px;
}

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

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

.movie-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(127, 29, 29, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  box-shadow: 0 26px 60px rgba(127, 29, 29, 0.16);
}

.poster-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #111827);
}

.poster-box img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.year-badge,
.rank-badge,
.card-play {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.year-badge {
  right: 10px;
  top: 10px;
  padding: 4px 8px;
  color: #ffffff;
  background: rgba(127, 29, 29, 0.82);
  border-radius: 999px;
  font-size: 12px;
}

.rank-badge {
  left: 10px;
  top: 10px;
  min-width: 34px;
  height: 34px;
  color: #7f1d1d;
  background: #fde68a;
  border-radius: 999px;
}

.card-play {
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-card h3 {
  min-height: 44px;
  margin: 0 0 8px;
  color: #111827;
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.movie-meta span {
  padding: 3px 8px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.movie-genre {
  margin-top: 8px;
  color: #9ca3af;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.ranking-box {
  align-self: start;
  position: sticky;
  top: 92px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #fff7f3);
  box-shadow: var(--shadow);
}

.ranking-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.ranking-head a {
  color: var(--brand);
  font-weight: 900;
}

.ranking-box ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ranking-box li a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #fee2e2;
}

.ranking-box li span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--brand);
  border-radius: 999px;
  font-weight: 900;
}

.ranking-box li strong,
.ranking-box li em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-box li em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

.category-card,
.category-overview-card a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(127, 29, 29, 0.1);
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(135deg, #fee2e2, #7f1d1d);
}

.category-card div,
.category-overview-body {
  padding: 18px;
}

.category-card h3,
.category-overview-body h2 {
  margin: 0 0 8px;
}

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

.page-hero {
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #7f1d1d 58%, #111827);
}

.page-hero.slim .container {
  padding: 58px 0;
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  color: #fde68a;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-weight: 900;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

.toolbar {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(127, 29, 29, 0.08);
}

.toolbar label {
  display: grid;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 900;
}

.toolbar input {
  padding: 14px 16px;
  border: 1px solid #fecaca;
  border-radius: 999px;
  background: #fff7f3;
}

.empty-state {
  margin-top: 22px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed #fca5a5;
  border-radius: var(--radius-md);
  background: #ffffff;
}

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

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
  background: linear-gradient(135deg, #7f1d1d, #111827);
}

.category-thumbs img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, #fee2e2, #111827);
}

.category-overview-body span {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 900;
}

.detail-hero {
  color: #ffffff;
  background: radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.42), transparent 28%), linear-gradient(135deg, #111827, #7f1d1d 58%, #111827);
}

.detail-hero .container {
  padding: 42px 0 56px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, #fee2e2, #111827);
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.detail-meta {
  margin-top: 22px;
}

.detail-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tag-cloud {
  margin-top: 18px;
}

.tag-cloud a {
  color: #7f1d1d;
  background: #fde68a;
}

.detail-copy .primary-button {
  margin-top: 28px;
}

.player-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #111827;
  box-shadow: var(--shadow);
}

.video-shell {
  position: relative;
  background: #020617;
}

.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.25), rgba(0, 0, 0, 0.72));
  cursor: pointer;
}

.video-cover span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.video-cover strong {
  font-size: 20px;
}

.video-cover.is-hidden {
  display: none;
}

.player-info {
  padding: 24px;
  color: #ffffff;
}

.player-info h2 {
  color: #ffffff;
}

.player-info p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  padding-top: 42px;
}

.detail-content article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(127, 29, 29, 0.08);
}

.detail-content p {
  margin: 12px 0 0;
}

.site-footer {
  margin-top: 72px;
  color: #ffffff;
  background: #111827;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  padding: 42px 0;
}

.footer-brand {
  color: #ffffff;
  font-size: 24px;
}

.footer-inner p {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.footer-links a {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.footer-bottom {
  padding: 18px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

  .two-column-section {
    grid-template-columns: 1fr;
  }

  .ranking-box {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header-inner {
    gap: 12px;
  }

  .hero-inner {
    min-height: auto;
    padding: 44px 0 76px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-poster {
    margin: 0;
    width: min(300px, 86vw);
  }

  .intro-panel,
  .detail-grid,
  .detail-content,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 560px) {
  .container,
  .site-header-inner,
  .mobile-panel,
  .hero-inner,
  .footer-inner {
    width: min(100% - 22px, 1180px);
  }

  .brand-name {
    font-size: 18px;
  }

  .hero h1,
  .hero h2,
  .detail-copy h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero p,
  .detail-one-line {
    font-size: 16px;
  }

  .intro-panel {
    margin-top: -24px;
    padding: 20px;
  }

  .intro-search {
    display: grid;
    border-radius: 22px;
  }

  .intro-search button {
    border-radius: 0;
  }

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

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

  .movie-card h3 {
    font-size: 15px;
  }

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