:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-700: #c2410c;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #f3e8d0;
  --card: #ffffff;
  --soft: #fff7ed;
  --shadow: 0 20px 45px rgba(120, 53, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--amber-900), var(--orange-700), var(--amber-900));
  box-shadow: 0 12px 28px rgba(120, 53, 15, 0.24);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff7ed;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo {
  font-size: 22px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-900);
  background: linear-gradient(135deg, var(--amber-200), #fff7ed);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38), 0 8px 18px rgba(0, 0, 0, 0.16);
  font-size: 14px;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.nav-links a,
.mobile-panel a {
  color: var(--amber-100);
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.mobile-panel a:hover {
  color: var(--amber-300);
}

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

.nav-search input,
.mobile-panel input,
.hero-search input,
.filter-panel input,
.filter-panel select,
.search-page-box input {
  border: 1px solid rgba(217, 119, 6, 0.22);
  outline: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff7ed;
  padding: 10px 14px;
}

.nav-search input::placeholder,
.mobile-panel input::placeholder {
  color: var(--amber-200);
}

.nav-search button,
.mobile-panel button,
.hero-search button,
.search-page-box button,
.filter-panel button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--amber-900);
  background: linear-gradient(135deg, var(--amber-200), #fff7ed);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button:hover,
.mobile-panel button:hover,
.hero-search button:hover,
.search-page-box button:hover,
.filter-panel button:hover,
.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(146, 64, 14, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff7ed;
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  padding: 10px 20px 18px;
  background: rgba(120, 53, 15, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-panel.is-open {
  display: grid;
  gap: 12px;
}

.mobile-panel form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.hero {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #111827;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.58) 42%, rgba(17, 24, 39, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, transparent 46%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100% - 1280px) / 2 + 24px));
  right: 24px;
  bottom: 64px;
  max-width: 760px;
  color: #fff7ed;
}

.hero-kicker,
.hero-tags,
.card-tags,
.detail-meta,
.tag-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hero-kicker span,
.hero-tags span,
.card-tags span,
.detail-meta span,
.detail-meta a,
.tag-links a {
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: var(--amber-100);
  border: 1px solid rgba(252, 211, 77, 0.35);
  padding: 5px 10px;
  font-size: 13px;
}

.hero-content h1 {
  margin: 16px 0 16px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.46);
}

.hero-content p {
  margin: 0 0 18px;
  font-size: clamp(16px, 2vw, 22px);
  color: #f3f4f6;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-700));
}

.btn-ghost {
  color: #fff7ed;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff7ed;
  background: rgba(0, 0, 0, 0.36);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

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

.hero-dots button.is-active {
  width: 34px;
  background: var(--amber-300);
}

main,
.page-main,
.detail-main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

main {
  padding-bottom: 20px;
}

.home-intro {
  margin: 36px auto 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--amber-700);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 900;
}

.home-intro h2,
.section-head h2,
.page-hero h1,
.rank-copy h2 {
  margin: 0;
  color: #111827;
  line-height: 1.15;
}

.home-intro h2,
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
}

.home-intro p:last-child,
.page-hero p,
.rank-copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

.hero-search,
.search-page-box form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.hero-search input,
.search-page-box input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  color: var(--text);
  background: #fff;
}

.hero-search input::placeholder,
.search-page-box input::placeholder,
.filter-panel input::placeholder {
  color: #a8a29e;
}

.content-section,
.rank-strip,
.category-grid,
.rank-page-list,
.search-page-box,
.filter-panel {
  margin-top: 42px;
}

.featured-section {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
  border: 1px solid rgba(217, 119, 6, 0.12);
}

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

.section-head h2,
.rank-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.section-head a {
  color: var(--amber-700);
  font-weight: 800;
  white-space: nowrap;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 12px 26px rgba(120, 53, 15, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 44px rgba(120, 53, 15, 0.18);
}

.card-link {
  display: grid;
  min-height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #451a03, #f59e0b);
}

.is-large .poster-wrap {
  aspect-ratio: 16 / 10;
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
  transition: opacity 0.25s ease;
}

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

.poster-type {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 10px;
  color: #fff7ed;
  background: rgba(180, 83, 9, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--amber-600);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  color: #111827;
}

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

.card-tags span {
  background: var(--amber-100);
  color: var(--amber-800);
  border: 0;
  font-size: 12px;
  padding: 4px 8px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  color: #78716c;
  font-size: 12px;
}

.rank-strip {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--amber-900), var(--orange-700));
  color: #fff7ed;
  box-shadow: var(--shadow);
}

.rank-copy h2,
.rank-copy p,
.rank-copy .eyebrow {
  color: #fff7ed;
}

.rank-copy p {
  color: var(--amber-100);
  margin-bottom: 24px;
}

.rank-list,
.compact-list {
  display: grid;
  gap: 12px;
}

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

.compact-item {
  display: grid;
  grid-template-columns: auto 64px minmax(0, 1fr);
  grid-template-areas: "no img title" "no img meta";
  align-items: center;
  gap: 0 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
  padding: 10px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.compact-list .compact-item {
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.compact-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.compact-list .compact-item:hover {
  background: var(--amber-50);
}

.rank-no {
  grid-area: no;
  width: 30px;
  color: var(--amber-200);
  font-weight: 900;
}

.compact-item img {
  grid-area: img;
  width: 64px;
  height: 74px;
  border-radius: 10px;
  object-fit: cover;
  background: #451a03;
}

.compact-title {
  grid-area: title;
  overflow: hidden;
  color: inherit;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.compact-meta {
  grid-area: meta;
  color: var(--amber-100);
  font-size: 12px;
}

.compact-list .compact-meta {
  color: var(--muted);
}

.page-main,
.detail-main {
  padding-top: 34px;
}

.page-hero {
  padding: 44px;
  border-radius: 28px;
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.26), transparent 36%), linear-gradient(135deg, #fff7ed, #ffffff);
  border: 1px solid rgba(217, 119, 6, 0.12);
  box-shadow: var(--shadow);
}

.small-hero {
  padding: 36px;
}

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

.category-card a {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.12);
  box-shadow: 0 12px 24px rgba(120, 53, 15, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

.category-card > a > span {
  color: var(--amber-700);
  font-weight: 800;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-samples a {
  display: inline-flex;
  min-height: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--amber-100);
  color: var(--amber-800);
  box-shadow: none;
  font-size: 13px;
}

.filter-panel,
.search-page-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.12);
  box-shadow: 0 12px 22px rgba(120, 53, 15, 0.08);
}

.search-page-box {
  grid-template-columns: 1fr;
}

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

.rank-row a {
  display: grid;
  grid-template-columns: 56px 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.1);
  box-shadow: 0 10px 22px rgba(120, 53, 15, 0.06);
}

.rank-row-no {
  color: var(--amber-700);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.rank-row img {
  width: 82px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
  background: #451a03;
}

.rank-row-main strong,
.rank-row-main em {
  display: block;
}

.rank-row-main strong {
  font-size: 18px;
  color: #111827;
}

.rank-row-main em {
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-row-meta {
  color: var(--amber-700);
  font-weight: 800;
  white-space: nowrap;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--amber-700);
  font-weight: 700;
}

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

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #050505;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.18));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--amber-600);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  font-size: 36px;
  transform: translateX(3px);
}

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

.detail-title {
  padding: 24px 0 12px;
}

.detail-title h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  color: #111827;
}

.detail-meta span,
.detail-meta a,
.tag-links a {
  color: var(--amber-800);
  background: var(--amber-100);
  border: 0;
}

.detail-panel,
.side-card {
  margin-top: 20px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.1);
  box-shadow: 0 12px 28px rgba(120, 53, 15, 0.08);
}

.warm-panel {
  background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.detail-panel h2,
.side-card h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 22px;
}

.detail-panel p,
.side-card p {
  margin: 0;
  color: #4b5563;
}

.detail-panel .lead-text {
  margin-bottom: 12px;
  color: var(--amber-800);
  font-weight: 800;
}

.detail-side {
  min-width: 0;
}

.detail-side .side-card:first-child {
  margin-top: 0;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  object-fit: cover;
  background: #451a03;
  margin-bottom: 16px;
}

.side-card {
  position: sticky;
  top: 92px;
}

.side-card + .side-card {
  position: static;
}

.site-footer {
  margin-top: 70px;
  color: var(--amber-100);
  background: linear-gradient(90deg, var(--amber-900), var(--orange-700), var(--amber-900));
}

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

.footer-logo {
  margin-bottom: 14px;
  font-size: 24px;
}

.footer-brand p {
  max-width: 620px;
  margin: 0;
  color: var(--amber-200);
}

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

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--amber-300);
}

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--amber-200);
  font-size: 14px;
}

[data-card].is-hidden {
  display: none;
}

.search-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: 20px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

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

  .nav-search {
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .side-card {
    position: static;
  }
}

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

  .hero {
    height: 560px;
  }

  .hero-content {
    left: 20px;
    bottom: 54px;
  }

  .hero-arrow {
    display: none;
  }

  .home-intro,
  .rank-strip,
  .footer-inner,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-list {
    grid-template-columns: 1fr;
  }

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

  .rank-row a {
    grid-template-columns: 42px 70px minmax(0, 1fr);
  }

  .rank-row-meta {
    grid-column: 3;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .nav-inner,
  main,
  .page-main,
  .detail-main,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 22px, 1280px);
  }

  .logo {
    font-size: 18px;
  }

  .hero {
    height: 520px;
  }

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

  .home-intro,
  .featured-section,
  .rank-strip,
  .page-hero,
  .detail-panel,
  .side-card {
    padding: 20px;
    border-radius: 20px;
  }

  .movie-grid,
  .all-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .player-start span {
    width: 66px;
    height: 66px;
    font-size: 28px;
  }
}
