/* SoundEffectHub — premium editorial styles */

:root {
  --sv-ink: #0f1220;
  --sv-muted: #5b6175;
  --sv-line: #e6e8ef;
  --sv-soft: #f6f7fb;
  --sv-white: #ffffff;
  --sv-accent: #4f46e5;
  --sv-accent-soft: #eef2ff;
  --sv-accent-dark: #3730a3;
  --sv-radius: 1rem;
  --sv-shadow: 0 10px 30px rgba(15, 18, 32, 0.06);
  --sv-max: 1280px;
  --sv-prose: 46rem;
  --sv-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sv-sans: "Sora", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sv-sans);
  color: var(--sv-ink);
  background: var(--sv-white);
  -webkit-font-smoothing: antialiased;
}

.font-serif {
  font-family: var(--sv-serif);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sv-ink);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sv-line);
}

.brand-mark {
  font-family: var(--sv-serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.nav-link {
  color: var(--sv-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--sv-accent);
}

/* Hero */
.hero-panel {
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(79, 70, 229, 0.10), transparent 60%),
    radial-gradient(900px 360px at 90% 0%, rgba(15, 18, 32, 0.04), transparent 55%),
    linear-gradient(180deg, #fbfbfe 0%, #ffffff 100%);
  border-bottom: 1px solid var(--sv-line);
}

.hero-label {
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sv-accent);
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--sv-line);
  background: white;
  color: var(--sv-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.topic-chip:hover {
  border-color: #c7d2fe;
  color: var(--sv-accent-dark);
  background: var(--sv-accent-soft);
}

/* Cards */
.article-card {
  border: 1px solid var(--sv-line);
  border-radius: 1.15rem;
  background: white;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sv-shadow);
  border-color: #d7dbec;
}

.article-card:hover .card-title {
  color: var(--sv-accent);
}

.article-card:hover .card-img {
  transform: scale(1.04);
}

.card-img {
  transition: transform 0.45s ease;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sv-accent-dark);
  background: var(--sv-accent-soft);
  border: 1px solid #c7d2fe;
  border-radius: 0.45rem;
  padding: 0.22rem 0.55rem;
}

/* Featured */
.featured-panel {
  border: 1px solid var(--sv-line);
  border-radius: 1.5rem;
  overflow: hidden;
  background: white;
}

/* Popular list */
.popular-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--sv-line);
}

.popular-item:last-child {
  border-bottom: 0;
}

/* Newsletter */
.newsletter-panel {
  background:
    linear-gradient(135deg, #111827 0%, #1e1b4b 55%, #312e81 100%);
  color: white;
  border-radius: 1.5rem;
}

.newsletter-panel input {
  color: var(--sv-ink);
}

/* Article reading */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #6366f1, #4f46e5);
  z-index: 60;
  transition: width 0.05s linear;
}

.prose-article {
  max-width: var(--sv-prose);
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #1f2433;
}

.prose-article h2 {
  font-family: var(--sv-serif);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.25;
  margin: 2.4rem 0 0.9rem;
  color: var(--sv-ink);
  letter-spacing: -0.02em;
  scroll-margin-top: 5.5rem;
}

.prose-article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.6rem 0 0.65rem;
  color: var(--sv-ink);
  scroll-margin-top: 5.5rem;
}

.prose-article p,
.prose-article .lead {
  margin: 0 0 1.15rem;
}

.prose-article .lead {
  font-size: 1.15rem;
  color: var(--sv-muted);
}

.prose-article ul,
.prose-article ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.prose-article li {
  margin-bottom: 0.45rem;
}

.prose-article a {
  color: var(--sv-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-article blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--sv-accent);
  background: var(--sv-soft);
  border-radius: 0 0.75rem 0.75rem 0;
  font-family: var(--sv-serif);
  font-size: 1.15rem;
  color: #2a3145;
}

.prose-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.95rem;
}

.prose-article th,
.prose-article td {
  border: 1px solid var(--sv-line);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.prose-article th {
  background: var(--sv-soft);
}

.tip-box {
  margin: 1.4rem 0;
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  background: var(--sv-accent-soft);
  border: 1px solid #c7d2fe;
  color: #1e1b4b;
}

/* In-article first fold: title + ad + buttons + ad */
.funnel-stack {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.funnel-stack__title {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.funnel-fold__ad {
  margin: 0.15rem 0;
}
.funnel-stack .cta-continue {
  margin: 0.15rem auto 0.25rem;
  width: 100%;
}
.funnel-stack .app-promo {
  margin: 0.15rem 0;
}
.funnel-stack .cta-continue__btn {
  padding: 0.78rem 1rem;
}
.funnel-fold__ad .ad-label {
  margin-bottom: 0.2rem;
}
@media (min-width: 640px) {
  .funnel-stack__title {
    font-size: 2rem;
  }
}

/* Funnel CTA — first page → interstitial (native <a>) → next article */
.cta-continue {
  margin: 1.75rem auto;
  max-width: 420px;
  text-align: center;
}
.cta-continue__label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}
.cta-continue__actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.cta-continue__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b8a6 0%, #6366f1 55%, #8b5cf6 100%);
  background-size: 160% 100%;
  background-position: 0% 50%;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.28);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    background-position 0.35s ease,
    filter 0.25s ease;
}
.cta-continue__btn:hover {
  transform: translateY(-3px) scale(1.02);
  background-position: 100% 50%;
  filter: brightness(1.08);
  box-shadow: 0 14px 28px rgba(99, 102, 241, 0.42);
}
.cta-continue__btn:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}
.cta-continue__play {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.cta-continue__btn:hover .cta-continue__play {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.35);
}
.cta-continue__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.28rem 0 0.28rem 0.45rem;
  border-color: transparent transparent transparent #fff;
}
.cta-continue__more {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
}
.cta-continue__more a {
  color: #94a3b8 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.cta-continue__more a:hover {
  color: #6366f1 !important;
}

/* FAQ blocks */
.faq-list {
  margin: 1rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.faq-q {
  padding: 0.85rem 1rem;
  background: #f1f5f9;
  font-weight: 700;
  color: #0f172a;
}
.faq-a {
  padding: 0.9rem 1rem;
  background: #f0fdf4;
  border-left: 3px solid #22c55e;
  color: #334155;
  line-height: 1.65;
}

/* App install promo (page 2) */
.app-promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.1rem;
  margin: 0.5rem 0;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  background: #f0f0f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.app-promo__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 220px;
}
.app-promo__icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #2563eb;
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
}
.app-promo__copy {
  min-width: 0;
}
.app-promo__name {
  margin: 0;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  font-size: 0.92rem;
}
.app-promo__stats {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.4rem;
}
.app-promo__stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.app-promo__stat-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.app-promo__star {
  color: #f5b301;
  font-size: 0.85rem;
}
.app-promo__stat-label {
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.2;
}
.app-promo__meta {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
}
.app-promo__stars {
  color: #f59e0b;
  letter-spacing: 0.05em;
}
.app-promo__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 0 1 240px;
  width: 100%;
  max-width: 260px;
}
.app-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none !important;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    filter 0.25s ease;
}
.app-store-btn:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.08);
}
.app-store-btn:active {
  transform: translateY(0) scale(0.98);
}
.app-store-btn--play {
  background: #15803d;
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.28);
}
.app-store-btn--play:hover {
  box-shadow: 0 12px 22px rgba(22, 163, 74, 0.4);
}
.app-store-btn--apple {
  background: #2563eb;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.28);
}
.app-store-btn--apple:hover {
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.4);
}

.toc a {
  display: block;
  padding: 0.35rem 0;
  color: var(--sv-muted);
  font-size: 0.9rem;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
}

.toc a:hover,
.toc a.is-active {
  color: var(--sv-accent);
  border-left-color: var(--sv-accent);
}

.sidebar-card {
  border: 1px solid var(--sv-line);
  border-radius: 1rem;
  background: white;
  padding: 1.15rem;
}

/* Search modal */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(15, 18, 32, 0.45);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 1rem 2rem;
}

.search-modal.is-open {
  display: flex;
}

.search-panel {
  width: min(720px, 100%);
  background: white;
  border-radius: 1.1rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--sv-ink);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sv-shadow);
  z-index: 50;
}

.back-to-top.is-visible {
  display: inline-flex;
}

/* Mobile nav */
.mobile-nav {
  display: none;
}

.mobile-nav.is-open {
  display: block;
}

@media (min-width: 1280px) {
  .mobile-nav.is-open {
    display: none !important;
  }
}

.cat-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

/* Footer */
.site-footer {
  background: #0b1020;
  color: #c7cce0;
}

.site-footer a {
  color: #c7cce0;
}

.site-footer a:hover {
  color: white;
}

.footer-brand {
  color: white;
  font-family: var(--sv-serif);
  font-size: 1.35rem;
  font-weight: 700;
}

/* Share */
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--sv-line);
  color: var(--sv-muted);
  transition: all 0.2s ease;
}

.share-btn:hover {
  color: var(--sv-accent);
  border-color: #c7d2fe;
  background: var(--sv-accent-soft);
}

.ad-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.ad-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.4rem;
}
.gpt-ad {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

/* Sticky bottom banner — fixed to bottom of screen */
.se-sticky-banner-host,
.se-bottom-anchor-host {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 50px;
  padding: 0;
  pointer-events: none;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.3s ease;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.25);
}
.se-sticky-banner-host.is-visible,
.se-bottom-anchor-host.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.se-sticky-banner-slot,
.se-bottom-anchor-slot {
  width: 320px;
  max-width: 100%;
  min-height: 50px;
  max-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}
.se-sticky-banner-slot iframe,
.se-sticky-banner-slot > div,
.se-bottom-anchor-slot iframe,
.se-bottom-anchor-slot > div {
  max-width: 100% !important;
}
@media (max-width: 359px) {
  .se-sticky-banner-slot,
  .se-bottom-anchor-slot {
    width: 300px;
  }
}

/* In-article banner under title — fixed 300x250 (mobile) */
.ad-inline {
  width: 100%;
  display: flex;
  justify-content: center;
}
.ad-inline .ad-frame {
  width: 300px;
  max-width: 100%;
}
.ad-inline .gpt-ad,
.gpt-ad--300x250 {
  width: 300px !important;
  height: 250px !important;
  min-width: 300px !important;
  min-height: 250px !important;
  max-width: 300px !important;
  margin-inline: auto;
  overflow: hidden;
}
@media (max-width: 320px) {
  .ad-inline .ad-frame,
  .ad-inline .gpt-ad,
  .gpt-ad--300x250 {
    width: 100% !important;
    max-width: 300px !important;
    min-width: 0 !important;
  }
}

/* Landing first fold — ads + movie slider above site chrome */
.landing-fold {
  background: #000;
  color: #fff;
  padding: 0.5rem 0.85rem 0.85rem;
}
.landing-fold__ad {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0.25rem 0 0.45rem;
}
.landing-fold__ad .ad-label {
  color: #64748b;
}
.landing-fold__ad .ad-frame {
  width: 300px;
  max-width: 100%;
}

.movie-slider {
  max-width: 720px;
  width: 100%;
  margin: 0.15rem auto 0.35rem;
}
.movie-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}
.movie-slider__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.movie-slider__all {
  color: #ff2d7b !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}
.movie-slider__all:hover {
  color: #ff5c98 !important;
}
.movie-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
}
.movie-slider__viewport::-webkit-scrollbar {
  display: none;
}
.movie-slider__track {
  display: flex;
}
.movie-slider__page {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.movie-card {
  min-width: 0;
  text-decoration: none !important;
  color: inherit;
}
.movie-card__poster {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 0.7rem;
  overflow: hidden;
  background: #1a1a1a;
}
.movie-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.movie-card__rating {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.12rem 0.38rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
}
.movie-card__star {
  color: #fbbf24;
  font-size: 0.62rem;
  line-height: 1;
}
.movie-card__name {
  margin: 0.4rem 0 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.movie-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
}
.movie-slider__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #3f3f46;
  cursor: pointer;
}
.movie-slider__dot.is-active {
  background: #ff2d7b;
}
@media (min-width: 640px) {
  .landing-fold {
    padding: 0.75rem 1rem 1.25rem;
  }
  .movie-slider__title {
    font-size: 1.05rem;
  }
  .movie-slider__page {
    gap: 0.75rem;
  }
  .movie-card__name {
    font-size: 0.72rem;
  }
  .movie-card__rating {
    font-size: 0.72rem;
  }
}

.featured-hero {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin: 0.2rem auto 0.55rem;
  min-height: 22.5rem;
  border-radius: 0.9rem;
  overflow: hidden;
  display: flex;
  color: #fff;
  background: #111;
}
.featured-hero__bg,
.featured-hero__shade {
  position: absolute;
  inset: 0;
}
.featured-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-hero__shade {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.45) 38%,
    rgba(0, 0, 0, 0.88) 100%
  );
}
.featured-hero__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.8rem 0.85rem 0.95rem;
}
.featured-hero__badges {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.featured-hero__rated {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.5rem;
  border-radius: 0.28rem;
  background: #22c55e;
  color: #052e16;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.featured-hero__trend {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.28rem;
  max-width: 11.5rem;
  padding: 0.28rem 0.5rem;
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.62rem;
  line-height: 1.25;
  color: #fff;
}
.featured-hero__flame {
  font-size: 0.72rem;
  line-height: 1.2;
}
.featured-hero__trend strong {
  display: block;
  font-weight: 800;
}
.featured-hero__trend-sub {
  display: block;
  color: #e5e7eb;
  font-weight: 600;
}
.featured-hero__title {
  margin: auto 0 0.15rem;
  font-family: var(--sv-serif);
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}
.featured-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f8fafc;
}
.featured-hero__score {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
.featured-hero__star {
  color: #facc15;
  font-size: 0.9rem;
  line-height: 1;
}
.featured-hero__genre {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
}
.featured-hero__plot {
  margin: 0.45rem 0 0.85rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #d1d5db;
}
.featured-hero__watch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: auto;
  padding: 0.82rem 1rem;
  border-radius: 0.7rem;
  background: linear-gradient(90deg, #ff2d7b 0%, #d946ef 48%, #7c3aed 100%);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(219, 39, 119, 0.35);
}
.featured-hero__watch:hover {
  filter: brightness(1.06);
}
.featured-hero__play {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1.5px solid #fff;
  position: relative;
  flex-shrink: 0;
}
.featured-hero__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.26rem 0 0.26rem 0.42rem;
  border-color: transparent transparent transparent #fff;
}

/* Utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .prose-article {
    font-size: 1.05rem;
  }
}
