* {
  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: #111827;
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 48%, #eff6ff 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #ec4899 0%, #a855f7 50%, #3b82f6 100%);
  box-shadow: 0 16px 40px rgba(168, 85, 247, 0.28);
}

.nav-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #ec4899;
  background: linear-gradient(135deg, #fef3c7, #fbcfe8);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
  animation: pulseLogo 2s ease-in-out infinite;
  font-size: 14px;
}

@keyframes pulseLogo {
  50% {
    transform: scale(1.08);
    opacity: 0.78;
  }
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fde68a;
  transform: translateY(-1px);
}

.top-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(290px, 30vw);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px;
  backdrop-filter: blur(10px);
}

.top-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 8px 12px;
}

.top-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.top-search button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  color: #7c2d12;
  background: #fde68a;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 8px 11px;
  cursor: pointer;
}

.hero-banner {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.95), rgba(168, 85, 247, 0.95), rgba(59, 130, 246, 0.95));
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(253, 224, 71, 0.3), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.22), transparent 20%),
    radial-gradient(circle at 75% 84%, rgba(34, 211, 238, 0.24), transparent 30%);
}

.stars-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.stars-background::before,
.stars-background::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  box-shadow:
    100px 150px #fff,
    200px 300px #fff,
    300px 100px #fff,
    400px 250px #fff,
    500px 180px #fff,
    600px 320px #fff,
    700px 90px #fff,
    800px 200px #fff,
    900px 280px #fff,
    1000px 140px #fff,
    1100px 260px #fff,
    1200px 170px #fff,
    50px 220px #fff,
    150px 80px #fff,
    250px 340px #fff,
    350px 120px #fff,
    450px 290px #fff,
    550px 160px #fff,
    650px 310px #fff,
    750px 70px #fff,
    850px 240px #fff,
    950px 190px #fff,
    1050px 300px #fff,
    1150px 130px #fff;
  animation: starsTwinkle 3s ease-in-out infinite;
}

.stars-background::after {
  width: 3px;
  height: 3px;
  animation-delay: 1.5s;
  box-shadow:
    80px 180px #fff,
    180px 280px #fff,
    280px 120px #fff,
    380px 230px #fff,
    480px 190px #fff,
    580px 300px #fff,
    680px 100px #fff,
    780px 220px #fff,
    880px 270px #fff,
    980px 150px #fff,
    1080px 250px #fff,
    1180px 160px #fff;
}

@keyframes starsTwinkle {
  50% {
    opacity: 0.34;
    transform: scale(0.82);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 600px;
  display: grid;
  align-items: center;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 46px;
  align-items: center;
  padding: 70px 0 92px;
}

.hero-slide.is-active {
  display: grid;
  animation: heroFade 0.55s ease both;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero-content h1,
.hero-content h2 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-shadow: 0 14px 36px rgba(30, 41, 59, 0.28);
}

.hero-content p {
  margin: 0 0 22px;
  max-width: 730px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.18);
}

.hero-actions,
.section-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #7c2d12;
  background: linear-gradient(135deg, #fef08a, #fbcfe8);
  box-shadow: 0 18px 35px rgba(251, 191, 36, 0.34);
}

.btn-soft {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.btn-pink {
  color: #fff;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  box-shadow: 0 14px 28px rgba(236, 72, 153, 0.28);
}

.hero-poster {
  position: relative;
  justify-self: end;
  width: min(370px, 100%);
  border-radius: 32px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.34);
  transform: rotate(2deg);
  transition: transform 0.25s ease;
  backdrop-filter: blur(18px);
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-6px);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
}

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

.hero-dots button {
  width: 44px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}

.hero-dots button.is-active {
  width: 62px;
  background: #fde68a;
}

.main-content {
  padding: 58px 0 76px;
}

.section-block {
  margin-bottom: 62px;
}

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

.section-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
  color: #111827;
}

.section-subtitle {
  margin: 8px 0 0;
  color: #6b7280;
  max-width: 780px;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border-radius: 26px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, #ec4899, #a855f7 52%, #3b82f6);
  box-shadow: 0 18px 45px rgba(168, 85, 247, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:nth-child(2n) {
  background: linear-gradient(135deg, #60a5fa, #a855f7 52%, #f472b6);
}

.category-tile:nth-child(3n) {
  background: linear-gradient(135deg, #f472b6, #fb7185 52%, #f59e0b);
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(168, 85, 247, 0.32);
}

.category-tile span {
  display: block;
  font-size: 34px;
  margin-bottom: 12px;
}

.category-tile strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.category-tile em {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.7;
  font-size: 14px;
}

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 35px rgba(148, 163, 184, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(168, 85, 247, 0.22);
}

.movie-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8, #e0e7ff);
}

.movie-thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.movie-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(17, 24, 39, 0.7));
  opacity: 0.84;
}

.movie-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(236, 72, 153, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.movie-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #ec4899;
  background: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

.movie-body {
  padding: 18px;
}

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

.movie-body h3 a:hover {
  color: #db2777;
}

.movie-meta {
  margin: 0 0 10px;
  color: #7c3aed;
  font-size: 13px;
  font-weight: 800;
}

.movie-desc {
  min-height: 48px;
  margin: 0 0 12px;
  color: #4b5563;
  line-height: 1.65;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.tag-row span {
  color: #be185d;
  background: #fce7f3;
}

.scroll-row {
  overflow-x: auto;
  padding: 4px 4px 18px;
}

.scroll-inner {
  display: flex;
  gap: 18px;
  width: max-content;
}

.scroll-inner .movie-card {
  width: 245px;
}

.rank-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 24px;
}

.rank-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.rank-link {
  display: grid;
  grid-template-columns: 42px 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 25px rgba(148, 163, 184, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(168, 85, 247, 0.2);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  font-weight: 900;
}

.rank-link img {
  width: 62px;
  height: 78px;
  object-fit: cover;
  border-radius: 14px;
}

.rank-main {
  min-width: 0;
}

.rank-main strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
}

.rank-main em {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #6b7280;
  font-style: normal;
  font-size: 13px;
}

.rank-heat {
  color: #db2777;
  font-weight: 900;
}

.mini-stack {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.18);
  transition: transform 0.2s ease;
}

.mini-card:hover {
  transform: translateX(4px);
}

.mini-card img {
  width: 74px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
}

.mini-card strong,
.mini-card em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card em {
  margin-top: 6px;
  color: #6b7280;
  font-style: normal;
  font-size: 13px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 38px;
  border-radius: 0 0 36px 36px;
  color: #fff;
  background: linear-gradient(120deg, #ec4899, #a855f7 50%, #3b82f6);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 74px 0 58px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 12px;
  margin-bottom: 28px;
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 35px rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(12px);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid #f0abfc;
  outline: 0;
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
}

.filter-panel input:focus,
.filter-panel select:focus {
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.13);
  border-color: #ec4899;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #6b7280;
  font-size: 14px;
}

.breadcrumb a {
  color: #7c3aed;
  font-weight: 800;
}

.detail-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 25px 60px rgba(168, 85, 247, 0.24);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
}

.detail-info {
  border-radius: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 55px rgba(148, 163, 184, 0.2);
}

.detail-info h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
}

.detail-lead {
  margin: 18px 0 22px;
  color: #374151;
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span {
  border-radius: 999px;
  padding: 7px 11px;
  color: #7c2d12;
  background: #fef3c7;
  font-size: 13px;
  font-weight: 900;
}

.player-card,
.content-card {
  overflow: hidden;
  margin-bottom: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 55px rgba(148, 163, 184, 0.2);
}

.player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: #fff;
  background: linear-gradient(90deg, #ec4899, #a855f7, #3b82f6);
}

.player-head h2 {
  margin: 0;
  font-size: 20px;
}

.video-stage {
  position: relative;
  background: #111827;
}

.video-stage video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  cursor: pointer;
}

.player-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.76));
  cursor: pointer;
  transition: opacity 0.22s ease;
}

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

.player-layer span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 14px;
  border-radius: 999px;
  color: #db2777;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  font-size: 34px;
}

.player-layer strong {
  display: block;
  font-size: 22px;
}

.content-card {
  padding: 30px;
}

.content-card h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.content-card p {
  margin: 0 0 18px;
  color: #374151;
  line-height: 1.9;
  font-size: 17px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.site-footer {
  color: #fff;
  background: linear-gradient(90deg, #581c87, #831843 50%, #1e3a8a);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding: 44px 0;
}

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

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: #fde68a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.empty-state {
  display: none;
  border-radius: 24px;
  padding: 26px;
  text-align: center;
  color: #6b7280;
  background: rgba(255, 255, 255, 0.86);
}

.pagination-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pagination-links a {
  border-radius: 999px;
  padding: 10px 15px;
  color: #7c3aed;
  background: #ede9fe;
  font-weight: 800;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, #f472b6, #c084fc);
}

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

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

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

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

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

@media (max-width: 780px) {
  .nav-wrap {
    min-height: 60px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(88, 28, 135, 0.96);
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.28);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 18px;
  }

  .hero-banner,
  .hero-inner {
    min-height: 520px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0 82px;
  }

  .hero-poster {
    justify-self: start;
    width: min(260px, 80vw);
  }

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

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

  .filter-panel {
    grid-template-columns: 1fr;
  }

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

  .rank-heat {
    display: none;
  }
}

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

  .brand {
    font-size: 20px;
  }

  .hero-banner,
  .hero-inner {
    min-height: 470px;
  }

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

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

  .detail-info,
  .content-card {
    padding: 22px;
  }

  .player-layer span {
    width: 70px;
    height: 70px;
  }
}
