:root {
  --rose: #f43f5e;
  --rose-dark: #e11d48;
  --orange: #f97316;
  --pink: #ec4899;
  --emerald: #10b981;
  --text: #1f2937;
  --muted: #6b7280;
  --soft: #f8fafc;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff7f9 0, #ffffff 360px, #f8fafc 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

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

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

.brand-icon,
.footer-brand span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 10px 28px rgba(244, 63, 94, 0.35);
}

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

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

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #374151;
  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(--rose-dark);
  background: #fff1f2;
}

.nav-link:hover,
.mobile-link:hover {
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  background: #ffffff;
}

.header-search input,
.mobile-search input,
.wide-search input,
.filter-controls input,
.filter-controls select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.header-search input {
  width: 180px;
  padding: 10px 0 10px 16px;
}

.header-search button,
.mobile-search button,
.wide-search button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  font-weight: 800;
  padding: 10px 18px;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  background: #fff1f2;
  color: var(--rose-dark);
}

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

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid #fecdd3;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.mobile-search input {
  min-width: 0;
  padding: 12px;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.35), transparent 26%), linear-gradient(120deg, #f43f5e 0%, #ec4899 48%, #f97316 100%);
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.38;
  z-index: 1;
}

.hero-glow-a {
  left: -120px;
  top: 70px;
  background: #ffffff;
}

.hero-glow-b {
  right: 6%;
  bottom: -120px;
  background: #fb7185;
}

.hero-stage {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 44px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-copy {
  color: #ffffff;
  max-width: 690px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  font-weight: 800;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero-one {
  margin: 0 0 16px;
  max-width: 760px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
}

.hero-desc {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  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: var(--rose-dark);
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(255, 255, 255, 0.28);
}

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

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.hero-media {
  justify-self: end;
  width: min(430px, 100%);
  aspect-ratio: 3 / 4;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
  background: rgba(255, 255, 255, 0.16);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-dot {
  width: 42px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease, width 0.2s ease;
}

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

main {
  width: 100%;
}

.search-band,
.section-block,
.filter-panel,
.breadcrumb-bar,
.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.search-band {
  margin-top: -54px;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.search-band h2,
.filter-panel h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.search-band p,
.filter-panel p {
  margin: 0;
  color: var(--muted);
}

.wide-search {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  background: #fff7f9;
}

.wide-search input {
  min-width: 0;
  padding: 15px 18px;
}

.wide-search button {
  padding-left: 26px;
  padding-right: 26px;
}

.section-block {
  padding: 74px 0 0;
}

.soft-block {
  padding-bottom: 10px;
}

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

.section-heading span {
  display: block;
  color: var(--rose-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.section-heading h2 {
  margin: 3px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading a {
  color: var(--rose-dark);
  font-weight: 900;
}

.compact-heading h2 {
  font-size: 30px;
}

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

.movie-card {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 46px rgba(244, 63, 94, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  height: 238px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe4e6, #fff7ed);
}

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

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

.card-badge,
.rank-mark {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(12px);
}

.card-badge {
  left: 12px;
  top: 12px;
}

.rank-mark {
  right: 12px;
  top: 12px;
  background: linear-gradient(135deg, #f59e0b, var(--orange));
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.3;
}

.card-body h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body h3 a:hover {
  color: var(--rose-dark);
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: #64748b;
  font-size: 12px;
}

.card-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f5f9;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 26px;
  padding-bottom: 82px;
}

.rank-panel,
.category-panel,
.filter-panel,
.side-card,
.detail-article {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rank-panel,
.category-panel {
  padding: 26px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 46px 84px 1fr 22px;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: #f8fafc;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: #fff1f2;
  transform: translateX(3px);
}

.rank-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 950;
  background: linear-gradient(135deg, var(--rose), var(--orange));
}

.rank-row img {
  width: 84px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.rank-info em {
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.rank-arrow {
  color: var(--rose-dark);
  font-size: 26px;
}

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

.category-card,
.category-overview-card {
  display: block;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff7f9, #ffffff);
  border: 1px solid #ffe4e6;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(244, 63, 94, 0.15);
}

.category-card {
  padding: 18px;
}

.category-chip {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--rose-dark);
  background: #ffe4e6;
  font-size: 12px;
  font-weight: 900;
}

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

.category-card p,
.category-overview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.category-strip,
.overview-image-set {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.category-strip img,
.overview-image-set img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
}

.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.28), transparent 28%);
}

.page-hero > div {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.page-hero p {
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero span {
  display: block;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.category-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 80px;
}

.category-overview-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.category-overview-card .overview-image-set {
  margin: 0;
  padding: 16px;
}

.overview-image-set img {
  height: 130px;
}

.overview-body {
  padding: 0 20px 20px;
}

.overview-links {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.overview-links a {
  color: var(--rose-dark);
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-panel {
  margin-top: 34px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.filter-controls {
  display: flex;
  gap: 12px;
}

.filter-controls input,
.filter-controls select {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  background: #fff7f9;
}

.empty-state {
  margin: 28px 0 60px;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
  border-radius: var(--radius);
}

.ranking-grid .movie-card.is-compact {
  display: grid;
  grid-template-columns: 160px 1fr;
}

.movie-card.is-compact .poster-link {
  height: 100%;
  min-height: 180px;
}

.breadcrumb-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0;
  color: #64748b;
  font-size: 14px;
}

.breadcrumb-bar a:hover {
  color: var(--rose-dark);
}

.breadcrumb-bar strong {
  color: var(--text);
}

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

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

.watch-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #0f172a;
  box-shadow: 0 28px 68px rgba(15, 23, 42, 0.28);
  aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover,
.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-video {
  z-index: 1;
  background: #0f172a;
}

.player-cover {
  z-index: 3;
  border: 0;
  padding: 0;
  color: #ffffff;
  background: #0f172a;
  overflow: hidden;
}

.player-cover img {
  object-fit: cover;
  opacity: 0.58;
  transform: scale(1.03);
}

.player-cover strong {
  position: absolute;
  left: 50%;
  top: calc(50% + 70px);
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 950;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.45);
}

.play-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  background: #ffffff;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.22), 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  font-size: 30px;
}

.watch-panel.is-playing .player-cover {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.detail-article {
  margin-top: 26px;
  padding: 30px;
}

.detail-article h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.detail-one-line {
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px;
}

.detail-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--rose-dark);
  background: #fff1f2;
  font-weight: 800;
  font-size: 13px;
}

.detail-article h2,
.side-card h2 {
  margin: 28px 0 12px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.detail-article p {
  color: #334155;
  line-height: 1.95;
  font-size: 16px;
}

.detail-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.side-card {
  padding: 20px;
}

.poster-side img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.poster-side h2 {
  margin: 18px 0 8px;
}

.poster-side p {
  color: var(--muted);
  margin: 7px 0 0;
  line-height: 1.7;
}

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

.side-related .movie-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  border-radius: 18px;
  box-shadow: none;
  border: 1px solid #f1f5f9;
}

.side-related .poster-link {
  height: 100%;
  min-height: 146px;
}

.side-related .card-body {
  padding: 12px;
}

.side-related .card-body h3 {
  font-size: 15px;
}

.side-related .card-body p {
  min-height: 0;
  -webkit-line-clamp: 2;
  font-size: 12px;
}

.site-footer {
  margin-top: 40px;
  background: #111827;
  color: #cbd5e1;
}

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

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

.footer-inner p {
  max-width: 560px;
  margin: 16px 0 0;
  color: #94a3b8;
  line-height: 1.75;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

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

  .detail-layout,
  .split-block {
    grid-template-columns: 1fr;
  }

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

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 34px 0 82px;
  }

  .hero-media {
    justify-self: start;
    width: min(300px, 80vw);
    order: -1;
    border-radius: 26px;
  }

  .hero-dots {
    bottom: 28px;
  }

  .search-band,
  .filter-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .filter-controls {
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .site-header-inner {
    height: 62px;
  }

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

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 42px;
  }

  .hero-one {
    font-size: 18px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .search-band {
    padding: 20px;
    border-radius: 22px;
  }

  .wide-search {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .movie-grid,
  .ranking-grid,
  .category-overview-grid,
  .mini-category-grid {
    grid-template-columns: 1fr;
  }

  .ranking-grid .movie-card.is-compact,
  .side-related .movie-card {
    grid-template-columns: 120px 1fr;
  }

  .poster-link {
    height: 220px;
  }

  .rank-row {
    grid-template-columns: 38px 70px 1fr;
  }

  .rank-arrow {
    display: none;
  }

  .rank-row img {
    width: 70px;
  }

  .detail-article,
  .side-card {
    padding: 18px;
  }
}
