:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --emerald-100: #d1fae5;
  --emerald-50: #ecfdf5;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 28px 70px rgba(2, 6, 23, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.94);
  color: var(--white);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-700));
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.03em;
}

.brand-text small {
  color: var(--slate-400);
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.mobile-nav-link {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--slate-200);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  padding: 9px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 10px;
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 14px;
  gap: 8px;
  flex-wrap: wrap;
}

.mobile-nav.open {
  display: flex;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

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

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.8s ease;
  pointer-events: none;
}

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

.hero-slide img,
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.18)), linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(248, 250, 252, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
  margin-left: max(16px, calc((100vw - 1280px) / 2));
  padding-top: 50px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--emerald-300, #6ee7b7);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--emerald-700);
}

.hero h1,
.hero h2 {
  margin: 0 0 16px;
  max-width: 900px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-movie-title {
  display: block;
  color: var(--emerald-400);
  font-size: clamp(24px, 4vw, 38px) !important;
  letter-spacing: 0;
}

.hero p {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--slate-200);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.detail-tags,
.filter-chips,
.tag-cloud,
.inline-links,
.hero-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-tags span,
.tag-cloud a,
.inline-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

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

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

.primary-button {
  color: var(--white);
  background: var(--emerald-600);
  box-shadow: 0 14px 30px rgba(5, 150, 105, 0.28);
}

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

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.primary-button.slim {
  min-height: 40px;
  padding: 0 18px;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: max(16px, calc((100vw - 1280px) / 2));
  bottom: 110px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

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

.hero-dot {
  width: 10px !important;
  height: 10px !important;
  padding: 0;
  background: rgba(255, 255, 255, 0.36) !important;
}

.hero-dot.active {
  width: 26px !important;
  border-radius: 999px !important;
  background: var(--emerald-400) !important;
}

.hero-search {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  width: min(760px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
}

.hero-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--slate-800);
  background: transparent;
}

.hero-search button {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--white);
  font-weight: 900;
  background: var(--emerald-600);
}

.hero-category-row {
  position: absolute;
  z-index: 5;
  left: max(16px, calc((100vw - 1280px) / 2));
  bottom: 112px;
  max-width: 700px;
}

.hero-category-row a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 58px 0;
}

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

.section-heading h2,
.page-hero h1,
.movie-detail-card h1 {
  margin: 0;
  color: var(--slate-800);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-more {
  color: var(--emerald-700);
  font-weight: 900;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

.spotlight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.movie-card {
  min-width: 0;
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.poster-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: var(--slate-900);
}

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

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

.duration-pill,
.play-mark {
  position: absolute;
  z-index: 2;
}

.duration-pill {
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.play-mark {
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%) scale(0.84);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(5, 150, 105, 0.86);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.card-body {
  position: relative;
  padding: 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.meta-pill {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--emerald-700);
  background: var(--emerald-100);
  font-size: 12px;
  font-weight: 900;
}

.card-body h3 {
  margin: 0;
  color: var(--slate-800);
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

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

.card-meta,
.rank-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 700;
}

.card-meta {
  margin-top: auto;
}

.rank-number {
  position: absolute;
  top: -34px;
  left: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 28px;
  font-weight: 950;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
}

.category-band {
  background: linear-gradient(135deg, var(--emerald-50), #f0fdfa);
}

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

.category-pill,
.category-card-large a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 130px;
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-pill strong,
.category-card-large h2 {
  color: var(--slate-800);
  font-size: 20px;
}

.category-pill span,
.category-card-large p,
.story-panel p {
  color: var(--slate-600);
}

.rank-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rank-item a {
  display: grid;
  grid-template-columns: 58px 170px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-item a:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.rank-index {
  color: var(--slate-300);
  font-size: 34px;
  font-weight: 950;
}

.rank-item img {
  width: 170px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
  background: var(--slate-900);
}

.rank-item h3 {
  margin: 0 0 8px;
  color: var(--slate-800);
  font-size: 20px;
}

.rank-item p {
  margin: 0 0 10px;
  color: var(--slate-600);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.story-panel,
.content-card,
.side-panel,
.player-card,
.side-poster {
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.story-panel {
  position: sticky;
  top: 96px;
  padding: 30px;
}

.story-panel h2 {
  margin: 0 0 14px;
  color: var(--slate-800);
  font-size: 30px;
  line-height: 1.14;
}

.filter-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--slate-600);
  font-weight: 900;
}

.search-box input {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  outline: 0;
  padding: 13px 16px;
  color: var(--slate-800);
  background: var(--slate-50);
}

.search-box input:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--slate-700);
  background: var(--slate-100);
  font-weight: 900;
}

.filter-chip.active,
.filter-chip:hover {
  color: var(--white);
  background: var(--emerald-600);
}

.empty-hint {
  margin: 0;
  color: var(--slate-500);
  font-weight: 800;
}

.movie-card.is-hidden,
.rank-item.is-hidden {
  display: none;
}

.page-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.small-hero {
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.34), transparent 36%), linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.small-hero h1,
.page-hero-content h1 {
  color: var(--white);
}

.small-hero p,
.page-hero-content p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--slate-200);
  font-size: 18px;
}

.category-hero {
  min-height: 460px;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.page-hero-content p {
  margin-left: 0;
  text-align: left;
}

.inline-links {
  margin-top: 24px;
}

.category-card-large a {
  min-height: 280px;
  overflow: hidden;
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  min-height: 120px;
}

.category-preview img {
  width: 100%;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--slate-900);
}

.tag-cloud a {
  color: var(--slate-700);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.detail-layout {
  padding: 32px 0 64px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: var(--emerald-700);
}

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

.detail-main {
  display: grid;
  gap: 22px;
}

.player-card {
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow-strong);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--black);
}

.play-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.54));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 6px;
  background: rgba(5, 150, 105, 0.9);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.42);
  font-size: 34px;
}

.play-overlay.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.content-card {
  padding: 30px;
}

.movie-detail-card h1 {
  margin-bottom: 16px;
}

.detail-meta {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-200);
}

.detail-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--slate-100);
}

.lead-text {
  color: var(--emerald-700) !important;
  font-size: 18px;
  font-weight: 900;
}

.movie-detail-card h2,
.side-panel h2 {
  margin: 24px 0 10px;
  color: var(--slate-800);
  font-size: 22px;
}

.movie-detail-card p {
  margin: 0 0 14px;
  color: var(--slate-700);
  font-size: 16px;
}

.detail-tags span {
  color: var(--slate-700);
  background: var(--slate-100);
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}

.side-poster {
  overflow: hidden;
}

.side-poster img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--slate-900);
}

.side-poster div,
.side-panel {
  padding: 20px;
}

.side-poster strong {
  display: block;
  color: var(--slate-800);
  font-size: 20px;
  line-height: 1.3;
}

.side-poster span {
  color: var(--emerald-700);
  font-weight: 900;
}

.side-rank .rank-item a {
  grid-template-columns: 42px 92px 1fr;
  gap: 12px;
  padding: 10px;
  box-shadow: none;
  background: var(--slate-50);
}

.side-rank .rank-index {
  font-size: 22px;
}

.side-rank .rank-item img {
  width: 92px;
  border-radius: 10px;
}

.side-rank .rank-item h3 {
  font-size: 14px;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.side-rank .rank-item p,
.side-rank .rank-meta {
  display: none;
}

.site-footer {
  color: var(--slate-300);
  background: var(--slate-950);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
}

.footer-brand {
  align-items: flex-start;
  max-width: 740px;
  margin-bottom: 26px;
}

.footer-brand strong {
  color: var(--white);
  font-size: 22px;
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--slate-400);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-links a {
  color: var(--slate-300);
  font-weight: 800;
}

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

.copyright {
  margin: 20px 0 0;
  color: var(--slate-500);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--emerald-600);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .featured-grid,
  .library-grid,
  .spotlight-grid,
  .category-pills,
  .category-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-column-section,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .story-panel,
  .detail-side {
    position: static;
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin-left: 16px;
    padding-right: 16px;
    justify-content: flex-start;
    padding-top: 115px;
  }

  .hero-search {
    bottom: 26px;
    border-radius: 20px;
    flex-direction: column;
    gap: 8px;
  }

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

  .hero-controls {
    left: 16px;
    right: auto;
    bottom: 150px;
  }

  .hero-category-row {
    left: 16px;
    right: 16px;
    bottom: 206px;
  }

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

  .featured-grid,
  .library-grid,
  .latest-grid,
  .related-grid,
  .spotlight-grid,
  .category-pills,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-item a {
    grid-template-columns: 42px 110px 1fr;
    gap: 12px;
  }

  .rank-item img {
    width: 110px;
  }
}

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

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text small {
    display: none;
  }

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

  .hero p {
    font-size: 16px;
  }

  .featured-grid,
  .library-grid,
  .latest-grid,
  .related-grid,
  .spotlight-grid,
  .category-pills,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-item img {
    width: 100%;
  }

  .content-card,
  .side-panel {
    padding: 22px;
  }
}
