:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --cyan-600: #0891b2;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --blue-600: #2563eb;
  --green-500: #22c55e;
  --orange-500: #f97316;
  --white: #ffffff;
  --shadow-lg: 0 20px 55px rgba(15, 23, 42, 0.15);
  --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.1);
  --radius-xl: 22px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 46%, #ecfeff 100%);
}

img,
video {
  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;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-950), var(--slate-800), var(--slate-950));
  box-shadow: 0 10px 35px rgba(2, 6, 23, 0.34);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-text {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: transparent;
  background: linear-gradient(90deg, var(--cyan-400), #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.34);
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 9px;
  border-left: 11px solid var(--white);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

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

.nav-link {
  font-size: 15px;
  color: #e2e8f0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--cyan-400);
}

.header-search,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-input,
.search-panel input,
.search-panel select {
  border: 1px solid rgba(148, 163, 184, 0.22);
  outline: none;
  color: var(--slate-900);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 11px 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, width 0.2s ease;
}

.header-search input {
  width: 220px;
  color: var(--white);
  background: rgba(51, 65, 85, 0.78);
}

.header-search input:focus {
  width: 280px;
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}

.header-search button,
.mobile-search button,
.primary-btn,
.secondary-btn,
.search-panel button {
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  box-shadow: 0 14px 30px rgba(8, 145, 178, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.primary-btn:hover,
.secondary-btn:hover,
.search-panel button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(8, 145, 178, 0.32);
}

.secondary-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: none;
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 3px;
  background: var(--white);
}

.mobile-panel {
  display: none;
  padding: 0 20px 18px;
  background: var(--slate-900);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

.mobile-search {
  margin: 14px 0;
}

.mobile-search input {
  width: 100%;
}

.mobile-link {
  display: block;
  padding: 12px 0;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 18% 20%, rgba(34, 211, 238, 0.22), transparent 32%), linear-gradient(135deg, var(--slate-950), var(--slate-800) 45%, #164e63);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 28px 28px;
  animation: drift 18s linear infinite;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-28px, -28px, 0); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero-copy h1 span {
  display: block;
  margin-top: 8px;
  color: var(--cyan-400);
}

.hero-copy p {
  margin: 0 0 26px;
  max-width: 760px;
  color: #cbd5e1;
  font-size: 19px;
  line-height: 1.8;
}

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

.hero-chips {
  margin-top: 24px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  color: #cffafe;
  border: 1px solid rgba(103, 232, 249, 0.28);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(10px);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  padding: 26px;
  opacity: 0;
  transform: scale(0.98) translateY(12px);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(14, 116, 144, 0.36));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background: var(--hero-bg) center / cover no-repeat;
  filter: blur(18px) saturate(1.15);
  transform: scale(1.08);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.62) 48%, rgba(8, 145, 178, 0.25));
}

.hero-poster,
.hero-feature {
  position: relative;
  z-index: 2;
}

.hero-poster img {
  width: 175px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
}

.hero-feature h2 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.18;
}

.hero-feature p {
  margin: 0 0 18px;
  color: #dbeafe;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-meta span,
.detail-meta span,
.movie-meta span,
.tag-row span,
.search-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.hero-meta span {
  padding: 6px 10px;
  color: #cffafe;
  background: rgba(6, 182, 212, 0.16);
}

.hero-dots {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.38);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: var(--cyan-400);
}

.stats-bar {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: -44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.stat-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 26px;
  color: var(--slate-950);
}

.stat-card span {
  color: var(--slate-500);
}

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

.page-main {
  padding: 78px 0;
}

.section {
  margin-bottom: 72px;
}

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

.section-eyebrow {
  margin: 0 0 8px;
  color: var(--cyan-600);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section h2,
.category-hero h1,
.detail-title,
.search-title {
  margin: 0;
  color: var(--slate-950);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section-desc,
.category-hero p,
.search-lead {
  margin: 10px 0 0;
  color: var(--slate-600);
  line-height: 1.8;
}

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--slate-800);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.32s ease;
}

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

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  box-shadow: 0 8px 18px rgba(8, 145, 178, 0.32);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  min-width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.32);
}

.movie-info {
  padding: 18px;
}

.movie-title {
  display: block;
  color: var(--slate-950);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-title:hover {
  color: var(--cyan-600);
}

.movie-line {
  min-height: 48px;
  margin: 10px 0;
  color: var(--slate-600);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta,
.search-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.movie-meta span,
.search-meta span {
  padding: 5px 9px;
  color: var(--slate-600);
  font-size: 12px;
  background: var(--slate-100);
}

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

.tag-row span {
  padding: 5px 9px;
  color: var(--cyan-600);
  font-size: 12px;
  font-weight: 700;
  background: #ecfeff;
}

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

.category-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--cyan-600));
  box-shadow: var(--shadow-lg);
}

.category-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.category-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 24px;
}

.category-card p {
  position: relative;
  margin: 0 0 22px;
  color: #dffbff;
  line-height: 1.7;
}

.category-card span {
  position: relative;
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--slate-950);
  font-weight: 800;
  background: var(--white);
}

.rank-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rank-panel {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.rank-panel h3 {
  margin: 0;
  padding: 22px 24px;
  color: var(--white);
  font-size: 22px;
  background: linear-gradient(90deg, var(--slate-900), var(--cyan-600));
}

.rank-list {
  padding: 12px;
}

.rank-item {
  display: grid;
  grid-template-columns: 42px 62px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.rank-item:hover {
  background: #f8fafc;
}

.rank-num {
  color: var(--cyan-600);
  font-weight: 900;
  font-size: 18px;
}

.rank-cover img {
  width: 62px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
}

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

.rank-text strong {
  color: var(--slate-950);
  font-size: 16px;
}

.rank-text em {
  margin-top: 5px;
  color: var(--slate-500);
  font-style: normal;
  font-size: 13px;
}

.page-hero,
.category-hero,
.detail-hero,
.search-hero {
  color: var(--white);
  background: radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.26), transparent 34%), linear-gradient(135deg, var(--slate-950), var(--slate-800), #164e63);
}

.category-hero,
.search-hero {
  padding: 80px 0;
}

.category-hero h1,
.search-title {
  color: var(--white);
}

.category-hero p,
.search-lead {
  max-width: 780px;
  color: #cbd5e1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--cyan-400);
  font-weight: 700;
}

.filter-bar,
.search-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 28px 0;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-input {
  width: min(420px, 100%);
}

.detail-hero {
  padding: 44px 0 64px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.65fr);
  gap: 36px;
  align-items: start;
}

.detail-title {
  color: var(--white);
}

.detail-desc {
  margin: 18px 0 0;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

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

.detail-meta span {
  padding: 8px 12px;
  color: #cffafe;
  background: rgba(6, 182, 212, 0.16);
}

.detail-poster-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.detail-poster-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.player-section {
  margin-top: -42px;
  position: relative;
  z-index: 3;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.35);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 0;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), rgba(2, 6, 23, 0.72)), center / cover no-repeat;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-button-large {
  width: 88px;
  height: 88px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  box-shadow: 0 20px 55px rgba(8, 145, 178, 0.42);
}

.play-button-large::before {
  content: "";
  margin-left: 6px;
  border-left: 24px solid var(--white);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

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

.article-card,
.side-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.article-card {
  padding: 34px;
}

.article-card h2,
.side-card h2 {
  margin: 0 0 18px;
  color: var(--slate-950);
  font-size: 26px;
}

.article-card p {
  margin: 0 0 18px;
  color: var(--slate-700);
  line-height: 1.92;
  font-size: 17px;
}

.side-card {
  padding: 22px;
}

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

.side-link {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #f8fafc;
}

.side-link img {
  width: 70px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
}

.side-link strong,
.side-link span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-link strong {
  color: var(--slate-950);
}

.side-link span {
  margin-top: 6px;
  color: var(--slate-500);
  font-size: 13px;
}

.search-panel {
  margin: 32px 0 0;
}

.search-panel input {
  min-width: 300px;
  flex: 1;
}

.search-results {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.search-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 20px;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.search-card img {
  width: 116px;
  height: 154px;
  object-fit: cover;
  border-radius: 16px;
}

.search-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.search-card p {
  margin: 0 0 12px;
  color: var(--slate-600);
  line-height: 1.7;
}

.empty-state {
  padding: 42px;
  text-align: center;
  color: var(--slate-500);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 34px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 16px;
}

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

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
}

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

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: var(--cyan-400);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 34px;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

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

  .menu-toggle {
    display: flex;
  }

  .hero-inner,
  .detail-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 54px 0 82px;
  }

  .hero-stage {
    min-height: 420px;
  }

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

@media (max-width: 720px) {
  .nav-wrap,
  .container,
  .stats-bar,
  .footer-grid {
    width: min(100% - 24px, 1180px);
  }

  .brand-text {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    gap: 32px;
  }

  .hero-slide {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .hero-poster img {
    width: 110px;
    border-radius: 16px;
  }

  .hero-feature h2 {
    font-size: 20px;
  }

  .hero-feature p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .stats-bar,
  .movie-grid,
  .category-grid,
  .rank-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .search-card {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .search-card img {
    width: 90px;
    height: 120px;
  }

  .article-card {
    padding: 24px;
  }
}
