:root {
  --bg: #fff7ed;
  --bg-soft: #fff1e6;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(148, 163, 184, 0.28);
  --card: rgba(255, 255, 255, 0.94);
  --dark: #111827;
  --red: #ef4444;
  --orange: #f97316;
  --amber: #f59e0b;
  --radius: 22px;
  --shadow: 0 20px 45px rgba(127, 29, 29, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(255, 237, 213, 0.95),
      transparent 36%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(255, 228, 230, 0.88),
      transparent 32%
    ),
    linear-gradient(135deg, #fffbeb 0%, #fff7ed 48%, #fff1f2 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}

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

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

.narrow {
  width: min(920px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(254, 215, 170, 0.65);
  box-shadow: 0 12px 30px rgba(127, 29, 29, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange), var(--amber));
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(239, 68, 68, 0.34);
}

.brand-text strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #dc2626, #ea580c, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex: 1;
}

.nav-link,
.mobile-nav a {
  border-radius: 999px;
  color: #374151;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-link {
  padding: 10px 15px;
  font-size: 0.94rem;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav a:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--red), var(--orange));
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #991b1b;
  background: #fff7ed;
  font-size: 1.4rem;
  font-weight: 900;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(254, 215, 170, 0.65);
}

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

.mobile-nav {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 20px;
  gap: 8px;
}

.mobile-nav a {
  padding: 12px 16px;
  background: rgba(255, 247, 237, 0.7);
}

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

.hero-stage {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  transform: scale(1.015);
  transition:
    opacity 0.65s ease,
    transform 0.9s ease;
  pointer-events: none;
}

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

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(17, 24, 39, 0.92) 0%,
      rgba(17, 24, 39, 0.64) 42%,
      rgba(17, 24, 39, 0.25) 100%
    ),
    linear-gradient(0deg, rgba(17, 24, 39, 0.9) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 92px 0 108px;
  color: #ffffff;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  color: #fed7aa;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 237, 213, 0.3);
  backdrop-filter: blur(12px);
}

.section-kicker {
  color: #c2410c;
  background: #ffedd5;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.9rem, 8vw, 6.8rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.075em;
  text-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
}

.hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.32rem);
  line-height: 1.85;
}

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

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

.primary-button,
.secondary-button,
.ghost-button,
.home-search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.primary-button,
.home-search-form button {
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--red), var(--orange));
  box-shadow: 0 18px 36px rgba(239, 68, 68, 0.32);
}

.secondary-button,
.ghost-button {
  padding: 0 22px;
  color: #b91c1c;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(254, 202, 202, 0.9);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.home-search-form button:hover {
  transform: translateY(-2px);
}

.hero-controls {
  position: absolute;
  right: max(22px, calc((100% - 1180px) / 2));
  bottom: 42px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-controls > button,
.hero-dots button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  font-size: 1.8rem;
}

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

.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  padding: 0;
}

.hero-dots button.active {
  width: 32px;
  background: #ffffff;
}

.home-search {
  margin-top: -48px;
  position: relative;
  z-index: 4;
}

.home-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  border: 1px solid rgba(254, 215, 170, 0.85);
  backdrop-filter: blur(18px);
}

.home-search-panel h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.home-search-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: #fff7ed;
  border-radius: 999px;
  border: 1px solid rgba(251, 146, 60, 0.35);
}

.home-search-form input {
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  outline: none;
  background: transparent;
  color: var(--text);
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.34);
  border-top: 1px solid rgba(254, 215, 170, 0.4);
  border-bottom: 1px solid rgba(254, 215, 170, 0.4);
}

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.prose-section h2 {
  margin: 0;
  color: #111827;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p,
.page-hero p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  color: #dc2626;
  font-weight: 900;
}

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid rgba(254, 215, 170, 0.75);
  box-shadow: 0 14px 34px rgba(127, 29, 29, 0.09);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 113, 113, 0.9);
  box-shadow: 0 24px 55px rgba(127, 29, 29, 0.16);
}

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

.movie-poster img,
.category-card-media img,
.rank-cover img,
.detail-poster img,
.tile-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-poster img {
  transition: transform 0.35s ease;
}

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

.poster-play {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.movie-info {
  padding: 14px 14px 16px;
}

.movie-meta,
.detail-meta-list {
  color: #9a3412;
  font-size: 0.78rem;
  font-weight: 800;
}

.movie-info h3 {
  display: -webkit-box;
  min-height: 2.9em;
  margin: 7px 0 8px;
  overflow: hidden;
  color: #111827;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-info p {
  display: -webkit-box;
  min-height: 4.6em;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

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

.movie-info .tag-row {
  margin-top: 12px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: #c2410c;
  background: #ffedd5;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-grid,
.category-overview-grid,
.service-grid {
  display: grid;
  gap: 22px;
}

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

.category-tile,
.category-card-large,
.service-grid article,
.player-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(254, 215, 170, 0.78);
  box-shadow: var(--shadow);
}

.category-tile {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
}

.tile-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.tile-covers img {
  aspect-ratio: 10 / 14;
  border-radius: 14px;
  background: #111827;
}

.category-tile h3,
.category-card-body h2,
.service-grid h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1.3rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.category-tile p,
.category-card-body p,
.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 88px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(254, 215, 170, 0.78);
  box-shadow: 0 14px 34px rgba(127, 29, 29, 0.08);
}

.rank-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #dc2626, #f97316);
  border-radius: 16px;
  font-weight: 950;
}

.rank-cover {
  aspect-ratio: 10 / 14;
  overflow: hidden;
  border-radius: 14px;
  background: #111827;
}

.rank-copy h3 {
  margin: 5px 0 7px;
  font-size: 1.05rem;
  font-weight: 950;
}

.rank-copy p {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(254, 215, 170, 0.9),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.88),
      rgba(255, 247, 237, 0.55)
    );
  border-bottom: 1px solid rgba(254, 215, 170, 0.56);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  border-radius: 28px;
}

.category-card-media {
  overflow: hidden;
  min-height: 230px;
  border-radius: 20px;
  background: #111827;
}

.category-card-body ul {
  display: grid;
  gap: 6px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.category-card-body li a {
  color: #9a3412;
  font-weight: 750;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(
      3,
      minmax(130px, 0.7fr)
    ) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(254, 215, 170, 0.82);
  box-shadow: 0 16px 36px rgba(127, 29, 29, 0.08);
}

.filter-bar label {
  display: grid;
  gap: 7px;
}

.filter-bar span {
  color: #9a3412;
  font-size: 0.78rem;
  font-weight: 900;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 16px;
  outline: none;
  padding: 0 13px;
  color: #111827;
  background: #fff7ed;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(239, 68, 68, 0.72);
  box-shadow: 0 0 0 4px rgba(254, 226, 226, 0.8);
}

.empty-result {
  display: none;
  margin-top: 24px;
  padding: 28px;
  border-radius: 22px;
  color: #9a3412;
  background: rgba(255, 237, 213, 0.82);
  font-weight: 900;
  text-align: center;
}

.empty-result.is-visible {
  display: block;
}

.detail-hero {
  padding: 34px 0 70px;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(254, 215, 170, 0.82),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 247, 237, 0.58)
    );
  border-bottom: 1px solid rgba(254, 215, 170, 0.6);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 30px;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb a {
  color: #c2410c;
}

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

.detail-poster {
  aspect-ratio: 10 / 14;
  overflow: hidden;
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 28px 70px rgba(127, 29, 29, 0.22);
}

.detail-copy h1 {
  font-size: clamp(2.5rem, 5.8vw, 5.4rem);
  line-height: 0.98;
}

.detail-one-line {
  max-width: 790px;
  margin: 22px 0 0;
  color: #4b5563;
  font-size: 1.16rem;
  line-height: 1.86;
}

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

.detail-meta-list span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #b91c1c;
  background: #fee2e2;
}

.detail-tags {
  margin-top: 20px;
}

.player-section {
  padding-top: 56px;
}

.player-card {
  overflow: hidden;
  border-radius: 30px;
}

.player-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #020617;
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #ffffff;
  background: radial-gradient(
    circle at center,
    rgba(239, 68, 68, 0.4),
    rgba(2, 6, 23, 0.52) 42%,
    rgba(2, 6, 23, 0.76)
  );
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.player-start span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  padding-left: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 26px 58px rgba(239, 68, 68, 0.35);
  font-size: 2rem;
}

.player-start strong {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

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

.player-status {
  min-height: 24px;
  margin: 0;
  padding: 12px 18px;
  color: #b91c1c;
  font-weight: 800;
}

.prose-section h2 {
  margin-top: 30px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.prose-section h2:first-child {
  margin-top: 0;
}

.prose-section p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.9;
}

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

.service-grid article {
  padding: 28px;
  border-radius: 26px;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937 48%, #111827);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  padding: 58px 0;
}

.footer-logo {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 950;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.8;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #d1d5db;
}

.site-footer a:hover {
  color: #fb923c;
}

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

.footer-bottom p {
  margin: 0;
  color: #9ca3af;
}

[hidden] {
  display: none !important;
}

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

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

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

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

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

  .detail-grid {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .hero,
  .hero-stage {
    min-height: 680px;
  }

  .home-search-panel,
  .category-card-large,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-search-form {
    border-radius: 22px;
    flex-direction: column;
  }

  .home-search-form input,
  .home-search-form button {
    min-height: 48px;
  }

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

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

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

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

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

  .header-inner {
    min-height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .brand-text strong {
    font-size: 1.12rem;
  }

  .brand-text em {
    display: none;
  }

  .hero,
  .hero-stage {
    min-height: 610px;
  }

  .hero-content {
    padding: 72px 0 110px;
  }

  .hero-controls {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }

  .section {
    padding: 52px 0;
  }

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

  .filter-bar .search-box,
  .filter-bar .ghost-button {
    grid-column: 1 / -1;
  }

  .movie-info {
    padding: 12px;
  }

  .movie-info h3 {
    font-size: 0.95rem;
  }

  .movie-info p {
    font-size: 0.82rem;
  }

  .rank-item {
    grid-template-columns: 44px 72px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .rank-number {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: 0.82rem;
  }

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

  .player-start span {
    width: 64px;
    height: 64px;
    font-size: 1.55rem;
  }
}
