:root {
  --cyan: #06b6d4;
  --blue: #3b82f6;
  --deep-blue: #1d4ed8;
  --orange: #f97316;
  --red: #ef4444;
  --green: #10b981;
  --text: #0f172a;
  --muted: #64748b;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--soft);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.nav-shell {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-icon {
  font-size: 30px;
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.12) rotate(-6deg);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #cffafe;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-button {
  border: 0;
  cursor: pointer;
  padding: 0;
  background: transparent;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  width: 180px;
  padding: 10px;
  color: var(--text);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: #334155;
}

.dropdown-panel a:hover {
  color: var(--deep-blue);
  background: #ecfeff;
}

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

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 12px 16px 18px;
  background: rgba(29, 78, 216, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav a {
  display: block;
  padding: 10px 4px;
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.38), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.45), transparent 36%),
    linear-gradient(135deg, #082f49 0%, #0f172a 62%, #1e3a8a 100%);
}

.hero-shell {
  position: relative;
  padding: 42px 0 54px;
}

.hero-slider {
  position: relative;
  min-height: 540px;
}

.hero-slide {
  position: relative;
  display: none;
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
  isolation: isolate;
}

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

.hero-backdrop-image {
  position: absolute;
  inset: -30px -10% auto auto;
  z-index: -2;
  width: 62%;
  height: calc(100% + 80px);
  object-fit: cover;
  opacity: 0.18;
  filter: blur(3px) saturate(1.1);
  border-radius: 44px;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.36), rgba(15, 23, 42, 0.76));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: #a5f3fc;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 14px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-one-line {
  max-width: 720px;
  margin: 0 0 12px;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #e0f2fe;
}

.hero-summary {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.hero-tags,
.detail-meta,
.detail-tags,
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 24px 0;
}

.hero-tags span,
.detail-meta span,
.detail-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 10px;
  color: #0369a1;
  background: #e0f2fe;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

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

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 26px rgba(37, 99, 235, 0.26);
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.primary-button.small {
  min-height: 42px;
  padding: 0 18px;
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

.ghost-button.dark {
  color: var(--deep-blue);
  background: #ffffff;
  border-color: var(--line);
}

.text-link {
  min-height: 34px;
  padding: 0;
  color: var(--deep-blue);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
}

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

.hero-poster span,
.play-mark {
  position: absolute;
  inset: auto 18px 18px auto;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(239, 68, 68, 0.35);
}

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

.hero-dot {
  width: 38px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-dot.active {
  background: #67e8f9;
}

.hero-search {
  position: relative;
  display: flex;
  max-width: 800px;
  margin: 10px auto 0;
  padding: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: #ffffff;
  background: transparent;
}

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

.hero-search button {
  border: 0;
  min-height: 44px;
  padding: 0 22px;
  color: #0f172a;
  background: #ffffff;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.section {
  padding: 64px 0;
}

.bg-soft {
  background: #f1f5f9;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
}

.section-heading span {
  display: block;
  width: 82px;
  height: 4px;
  margin: 14px auto 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.section-heading.orange span {
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.section-heading.red span {
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.section-heading.light {
  color: #ffffff;
}

.section-heading.light span {
  background: #ffffff;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.82);
}

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

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 40px rgba(15, 23, 42, 0.14);
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

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

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

.play-mark {
  width: 38px;
  height: 38px;
  font-size: 13px;
  opacity: 0.94;
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 12px;
  box-shadow: 0 14px 24px rgba(239, 68, 68, 0.28);
}

.card-body {
  padding: 12px;
}

.card-meta,
.wide-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.card-body h3 {
  min-height: 45px;
  margin: 7px 0 6px;
  overflow: hidden;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.card-body h3 a:hover,
.wide-title-line a:hover {
  color: var(--deep-blue);
}

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

.card-tags span {
  color: #9a3412;
  background: #ffedd5;
}

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

.wide-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.wide-cover {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  background: #e2e8f0;
}

.wide-cover img {
  height: 100%;
  object-fit: cover;
}

.wide-title-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

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

.wide-rank {
  flex: 0 0 auto;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 10px;
  font-weight: 900;
}

.wide-info p {
  display: -webkit-box;
  margin: 10px 0 8px;
  overflow: hidden;
  color: var(--muted);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.category-band {
  padding: 64px 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

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

.category-tile,
.category-overview-card {
  display: block;
  min-height: 150px;
  padding: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  transition: transform 0.24s ease, background 0.24s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.2);
}

.category-tile strong,
.category-overview-card span {
  display: block;
  font-size: 20px;
}

.category-tile span,
.category-overview-card strong {
  display: inline-flex;
  margin: 10px 0;
  padding: 4px 10px;
  color: #0f172a;
  background: #ffffff;
  border-radius: 999px;
  font-size: 13px;
}

.category-tile p,
.category-overview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.category-overview-card {
  color: var(--text);
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.category-overview-card:hover {
  background: #ffffff;
}

.category-overview-card strong {
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

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

.page-hero {
  padding: 56px 0;
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.page-hero.orange {
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.page-hero.green {
  background: linear-gradient(90deg, var(--green), #059669);
}

.page-hero h1 {
  margin: 10px 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.crumb {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.86);
}

.crumb:hover {
  color: #ffffff;
}

.filter-toolbar {
  margin-bottom: 28px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-chip {
  border: 0;
  padding: 8px 13px;
  color: #334155;
  background: #e2e8f0;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.filter-chip.active,
.filter-chip:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.result-counter {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  color: #ffffff;
  background: #0f172a;
  isolation: isolate;
}

.detail-bg {
  position: absolute;
  inset: -12% 0 auto 0;
  z-index: -2;
  width: 100%;
  height: 128%;
  object-fit: cover;
  opacity: 0.18;
  filter: blur(4px);
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.72));
}

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

.detail-poster {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.detail-poster img {
  height: 100%;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 14px 0 14px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 20px;
  color: #e0f2fe;
  font-size: 20px;
}

.detail-meta,
.detail-tags {
  margin-bottom: 18px;
}

.detail-meta span {
  color: #075985;
  background: #e0f2fe;
}

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

.player-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020617;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.78));
  cursor: pointer;
  text-align: center;
}

.play-overlay span {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.36);
  font-size: 24px;
}

.play-overlay strong {
  font-size: 18px;
}

.player-card.is-playing .play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.article-container {
  max-width: 930px;
}

.movie-article {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.movie-article h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.movie-article h2:not(:first-child) {
  margin-top: 28px;
}

.movie-article p {
  margin: 0;
  color: #334155;
  font-size: 17px;
}

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

.info-list div {
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.info-list dt {
  color: var(--muted);
  font-size: 13px;
}

.info-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

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

.support-grid article {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.support-grid strong {
  font-size: 20px;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(180deg, #1f2937, #0f172a);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 22px;
}

.footer-brand span {
  font-size: 30px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #cbd5e1;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

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

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

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

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

.footer-bottom p {
  margin: 0;
}

.is-hidden {
  display: none !important;
}

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

@media (max-width: 1120px) {
  .movie-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
  }

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

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

  .mobile-toggle {
    display: block;
  }

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

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

  .hero-slider {
    min-height: auto;
  }

  .hero-slide,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    min-height: auto;
    padding-bottom: 54px;
  }

  .hero-poster,
  .detail-poster {
    width: min(320px, 82vw);
    margin: 0 auto;
  }

  .hero-dots {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .wide-grid,
  .rank-list,
  .footer-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 44px 0;
  }

  .hero-shell {
    padding: 34px 0 42px;
  }

  .hero-search {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
  }

  .hero-search input {
    min-height: 44px;
  }

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

  .wide-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .wide-title-line h3 {
    font-size: 15px;
  }

  .wide-info p {
    -webkit-line-clamp: 2;
    font-size: 13px;
  }

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

  .page-hero {
    padding: 42px 0;
  }

  .player-card {
    border-radius: 16px;
  }

  .movie-article {
    padding: 20px;
  }
}
