:root {
  --toffee-primary: #C87941;
  --toffee-secondary: #E5A76B;
  --toffee-light: #F5E6D3;
  --toffee-cream: #FFF8F0;
  --toffee-caramel: #B8784F;
  --toffee-brown: #8B5A3C;
  --toffee-dark: #6B4423;
  --cloud-white: #FFFFFF;
  --cloud-soft: #F9F9F9;
  --ink: #3C2A1E;
  --muted: rgba(107, 68, 35, 0.68);
  --shadow-soft: 0 16px 45px rgba(107, 68, 35, 0.14);
  --shadow-hover: 0 24px 60px rgba(107, 68, 35, 0.22);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--toffee-dark);
  background:
    radial-gradient(circle at 8% 12%, rgba(229, 167, 107, 0.20), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(200, 121, 65, 0.13), transparent 24%),
    linear-gradient(135deg, var(--toffee-cream) 0%, var(--cloud-white) 52%, rgba(245, 230, 211, 0.55) 100%);
  line-height: 1.65;
}

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

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(245, 230, 211, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.88));
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.08);
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--toffee-dark);
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
  box-shadow: 0 10px 24px rgba(200, 121, 65, 0.28);
  animation: floatMark 4s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--toffee-brown);
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--toffee-dark);
  background: rgba(245, 230, 211, 0.85);
}

.header-search {
  width: min(290px, 28vw);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px 8px 16px;
  border: 1px solid rgba(229, 167, 107, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-search input,
.search-panel input,
.filter-control input,
.filter-control select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.header-search button,
.search-panel button {
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
  box-shadow: 0 10px 22px rgba(200, 121, 65, 0.24);
}

.header-search button {
  min-width: 44px;
  height: 38px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(229, 167, 107, 0.38);
  border-radius: 14px;
  color: var(--toffee-dark);
  background: rgba(255, 255, 255, 0.72);
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(245, 230, 211, 0.7);
  padding: 16px 0 22px;
}

.mobile-panel a {
  display: block;
  padding: 13px 16px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--toffee-brown);
}

.mobile-panel a:hover {
  background: rgba(245, 230, 211, 0.8);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(1.1);
  transform: scale(1.08);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 240, 0.96) 0%, rgba(255, 248, 240, 0.78) 44%, rgba(255, 255, 255, 0.35) 100%),
    radial-gradient(circle at 78% 45%, rgba(229, 167, 107, 0.32), transparent 32%);
}

.hero-content {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 46px;
  align-items: center;
  padding: 58px 0 74px;
}

.hero-copy {
  max-width: 680px;
  animation: fadeUp 0.75s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(229, 167, 107, 0.45);
  border-radius: 999px;
  color: var(--toffee-caramel);
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.hero h1,
.page-hero h1,
.detail-title {
  margin: 0;
  color: var(--toffee-dark);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 78px);
}

.hero-desc {
  margin: 20px 0 0;
  max-width: 640px;
  color: rgba(107, 68, 35, 0.80);
  font-size: 18px;
}

.hero-actions,
.card-actions,
.detail-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.toffee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.toffee-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
  box-shadow: 0 16px 30px rgba(200, 121, 65, 0.25);
}

.toffee-btn-ghost {
  color: var(--toffee-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(229, 167, 107, 0.42);
}

.hero-meta,
.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--toffee-brown);
  background: rgba(245, 230, 211, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  min-height: 420px;
}

.hero-poster {
  position: absolute;
  right: 6%;
  top: 22px;
  width: min(68%, 320px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.76);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--toffee-light), var(--toffee-secondary));
  box-shadow: var(--shadow-hover);
  transform: rotate(3deg);
}

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

.hero-mini-card {
  position: absolute;
  left: 4%;
  bottom: 24px;
  width: min(62%, 280px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-mini-card strong {
  display: block;
  color: var(--toffee-dark);
  font-size: 18px;
}

.hero-mini-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero-dot {
  width: 28px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(139, 90, 60, 0.22);
  transition: 0.25s ease;
}

.hero-dot.is-active {
  width: 46px;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
}

.section {
  padding: 64px 0;
}

.section.compact {
  padding: 34px 0 64px;
}

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

.section-title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 12px;
  color: var(--toffee-dark);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 900;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--toffee-secondary), transparent);
}

.section-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
}

.link-more {
  color: var(--toffee-primary);
  font-weight: 900;
}

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

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

.movie-card,
.toffee-card,
.info-panel,
.category-card,
.rank-row,
.search-panel,
.player-shell {
  border: 1px solid rgba(245, 230, 211, 0.85);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.movie-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap,
.detail-poster,
.recommend-poster,
.hero-poster {
  position: relative;
}

.poster-wrap {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--toffee-light), var(--toffee-secondary));
}

.poster-wrap img {
  transition: transform 0.45s ease;
}

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

.poster-wrap::before,
.detail-poster::before,
.recommend-poster::before,
.hero-poster::before {
  content: "高清电影";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(107, 68, 35, 0.58);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, var(--toffee-light), rgba(229, 167, 107, 0.72));
  opacity: 0;
}

.image-missing::before {
  opacity: 1;
}

.image-missing img {
  opacity: 0;
}

.card-badge,
.rank-badge,
.video-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(107, 68, 35, 0.18);
}

.video-badge {
  left: auto;
  right: 12px;
  background: rgba(60, 42, 30, 0.78);
}

.movie-body {
  padding: 16px;
}

.movie-title {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-title a:hover {
  color: var(--toffee-primary);
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(107, 68, 35, 0.72);
  font-size: 13px;
}

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

.category-card {
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card h3 {
  margin: 0 0 8px;
  color: var(--toffee-dark);
  font-size: 21px;
}

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

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(229, 167, 107, 0.30), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(245, 230, 211, 0.56));
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--toffee-primary);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 14px;
  margin-bottom: 28px;
}

.filter-control {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(229, 167, 107, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 78px 86px minmax(0, 1fr) 140px;
  gap: 18px;
  align-items: center;
  padding: 12px 16px;
}

.rank-number {
  color: var(--toffee-primary);
  font-size: 24px;
  font-weight: 1000;
}

.rank-thumb {
  position: relative;
  width: 76px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--toffee-light), var(--toffee-secondary));
}

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

.rank-row h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 18px;
}

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

.rank-extra {
  color: var(--toffee-brown);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background: var(--detail-bg, none) center / cover;
  filter: blur(20px);
  transform: scale(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 248, 240, 0.97), rgba(255, 248, 240, 0.88), rgba(255, 255, 255, 0.62));
}

.detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--toffee-light), var(--toffee-secondary));
  box-shadow: var(--shadow-hover);
}

.detail-title {
  font-size: clamp(34px, 5vw, 64px);
}

.detail-lead {
  margin: 18px 0 0;
  max-width: 780px;
  color: rgba(107, 68, 35, 0.82);
  font-size: 18px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.info-tile {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.info-tile span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.info-tile strong {
  display: block;
  margin-top: 2px;
  color: var(--toffee-dark);
  font-size: 16px;
}

.player-shell {
  overflow: hidden;
  padding: 18px;
}

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

.video-player video {
  width: 100%;
  height: 100%;
  background: #111;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(229, 167, 107, 0.20), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.70));
  transition: opacity 0.25s ease;
}

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

.play-circle {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
  box-shadow: 0 20px 45px rgba(200, 121, 65, 0.34);
}

.play-circle svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
  fill: currentColor;
}

.player-error {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  color: #fff;
  background: rgba(80, 24, 24, 0.86);
  font-weight: 700;
}

.player-error.is-visible {
  display: block;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
}

.info-panel {
  padding: 26px;
}

.info-panel + .info-panel {
  margin-top: 22px;
}

.info-panel h2,
.info-panel h3 {
  margin: 0 0 14px;
  color: var(--toffee-dark);
}

.info-panel p {
  margin: 0;
  color: rgba(60, 42, 30, 0.78);
}

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

.recommend-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.recommend-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--toffee-light), var(--toffee-secondary));
}

.recommend-item strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.recommend-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.search-panel {
  padding: 22px;
  margin-top: 26px;
}

.search-panel form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 150px 150px 110px;
  gap: 12px;
}

.search-panel input,
.search-panel select {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(229, 167, 107, 0.35);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.search-panel button {
  min-height: 48px;
  padding: 0 20px;
}

.empty-state {
  padding: 36px;
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
}

.site-footer {
  margin-top: 58px;
  border-top: 1px solid rgba(245, 230, 211, 0.85);
  background: linear-gradient(135deg, rgba(245, 230, 211, 0.72), rgba(255, 248, 240, 0.96));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 28px;
  padding: 44px 0;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 12px;
  color: var(--toffee-dark);
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

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

.footer-bottom {
  padding: 18px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

@keyframes floatMark {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

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

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

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

  .content-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 44px 0 84px;
  }

  .hero-showcase {
    min-height: 360px;
  }

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

  .detail-poster {
    max-width: 320px;
  }

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

  .filter-bar,
  .search-panel form {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 54px 68px minmax(0, 1fr);
  }

  .rank-extra {
    grid-column: 3;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    height: 66px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-desc,
  .page-hero p,
  .detail-lead {
    font-size: 16px;
  }

  .hero-showcase {
    min-height: 300px;
  }

  .hero-poster {
    width: 58%;
    right: 0;
  }

  .hero-mini-card {
    left: 0;
    width: 68%;
  }

  .section {
    padding: 44px 0;
  }

  .section-head {
    display: block;
  }

  .link-more {
    display: inline-block;
    margin-top: 12px;
  }

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

  .movie-body {
    padding: 13px;
  }

  .movie-title {
    font-size: 15px;
  }

  .movie-desc {
    font-size: 13px;
  }

  .page-hero,
  .detail-hero {
    padding: 38px 0;
  }

  .info-panel,
  .player-shell {
    padding: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
