@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #ff3c00;
  --brand-dark: #e50914;
  --brand-light: #ff6b35;
  --surface: #0a0a0c;
  --surface-2: #12121a;
  --surface-card: #16161f;
  --border: rgba(255,255,255,.08);
  --muted: #9ca3af;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --scrollbar-track: #12121a;
  --scrollbar-thumb: #ff3c00;
}

html { scroll-behavior: smooth; }

/* Custom scrollbar — page & horizontal rows */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-light), var(--brand-dark));
  border-radius: 999px;
  border: 2px solid var(--scrollbar-track);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff8c55, var(--brand));
}

*::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-light); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ── Mesh background ── */
.mesh-bg {
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(255,60,0,.18), transparent),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(229,9,20,.12), transparent),
    var(--surface);
  min-height: 100vh;
}

/* ── Typography ── */
.gradient-text {
  background: linear-gradient(135deg, #ff6b35, #ff3c00 40%, #e50914);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(255,60,0,.1);
  border: 1px solid rgba(255,60,0,.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-sub { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff3c00 50%, #e50914);
  color: #fff;
}
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 8px 32px rgba(255,60,0,.35); text-decoration: none; }

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.btn-secondary:hover { background: rgba(255,255,255,.06); border-color: rgba(255,60,0,.4); text-decoration: none; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22,22,31,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: #fff;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 4px 20px rgba(255, 120, 0, 0.35);
  background: #0a0a0c;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo--lg .logo-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(255, 120, 0, 0.4);
}
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }

.nav { display: flex; gap: .25rem; }
.nav a {
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-actions .btn { padding: .6rem 1.25rem; font-size: .875rem; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: .25rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .75rem 1rem;
  color: #ccc;
  text-decoration: none;
  border-radius: 8px;
}
.mobile-nav a:hover { background: rgba(255,255,255,.05); }

@media (max-width: 768px) {
  .nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .header-actions.mobile-show { display: flex; flex-direction: column; width: 100%; }
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?w=1920&q=60') center/cover;
  opacity: .12;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--surface));
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-app-logo {
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  margin-top: 1rem;
}
.hero-desc {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #d1d5db;
  line-height: 1.7;
}
.hero-btns { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.trust-badges { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 500;
  color: #d1d5db;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
}

/* ── Stats bar ── */
.stats-bar {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(18,18,26,.92);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.stat-label { text-align: center; font-size: .8rem; color: var(--muted); margin-top: .25rem; }

/* ── Screenshot showcase ── */
.screenshots-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--surface) 0%, #0d0d12 50%, var(--surface) 100%);
}

.screenshot-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.tab-btn {
  padding: .6rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  cursor: pointer;
  transition: all .25s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,60,0,.35);
}

.screenshots-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .screenshots-layout { grid-template-columns: 1fr 1.2fr; }
  .screenshots-layout.web-active { grid-template-columns: 1.2fr 1fr; }
}

.screenshot-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.screenshot-info p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.screenshot-features { list-style: none; margin: 1.5rem 0; }
.screenshot-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  color: #d1d5db;
  font-size: .925rem;
}
.screenshot-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,60,0,.2);
  color: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
}

/* Phone frame */
.phone-frame {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 2.5rem;
  background: linear-gradient(145deg, #2a2a32, #1a1a22);
  border: 3px solid #333;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 30px 60px rgba(0,0,0,.5),
    0 0 80px rgba(255,60,0,.12);
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #111;
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  border-radius: 2rem;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9/19.5;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Browser frame */
.browser-frame {
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a22;
  border: 1px solid #333;
  box-shadow:
    0 30px 60px rgba(0,0,0,.5),
    0 0 80px rgba(255,60,0,.1);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1rem;
  background: #222;
  border-bottom: 1px solid #333;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #555;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  padding: .35rem .75rem;
  border-radius: 6px;
  background: #111;
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
}
.browser-screen img { width: 100%; }

/* Mobile gallery strip */
.mobile-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.mobile-gallery::-webkit-scrollbar { height: 4px; }
.mobile-gallery::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 4px; }

.gallery-item {
  flex: 0 0 140px;
  scroll-snap-align: start;
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .6;
  transition: all .25s;
}
.gallery-item.active, .gallery-item:hover {
  opacity: 1;
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(255,60,0,.25);
}
.gallery-item img { width: 100%; aspect-ratio: 9/16; object-fit: cover; object-position: top; }

.screenshot-panel { display: none; }
.screenshot-panel.active { display: block; }

/* ── Cards & sections ── */
section { padding: 4rem 0; }
section.alt { background: #0d0d12; border-block: 1px solid var(--border); }

.card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255,60,0,.1);
  border-color: rgba(255,60,0,.25);
}

.features-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,60,0,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
}
.feature-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* Pricing */
.pricing-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.price-card { padding: 2rem; position: relative; }
.price-card.highlight {
  border-color: rgba(255,60,0,.5);
  background: linear-gradient(180deg, rgba(255,60,0,.12), var(--surface-card));
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
}
.price-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.price-amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: #fff; margin: .75rem 0; }
.price-amount span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.price-features { list-style: none; margin: 1.5rem 0; }
.price-features li { padding: .4rem 0; font-size: .875rem; color: #d1d5db; }
.price-features li::before { content: '✓ '; color: var(--brand-light); font-weight: 700; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: .75rem; margin-bottom: .75rem; overflow: hidden; background: var(--surface-card); }
.faq-q {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--muted); transition: transform .25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner { padding: 0 1.25rem 1rem; font-size: .875rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

/* Testimonials */
.testimonials-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.testimonial-card blockquote { font-size: .875rem; color: #d1d5db; line-height: 1.7; font-style: italic; }
.testimonial-author { margin-top: 1rem; font-family: var(--font-display); font-size: .875rem; font-weight: 600; color: #fff; }
.testimonial-loc { font-size: .75rem; color: var(--muted); }

/* CTA banner */
.cta-banner {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255,60,0,.18), rgba(22,22,31,.95) 50%, rgba(229,9,20,.1));
  border: 1px solid rgba(255,60,0,.25);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }
.cta-banner p { margin-top: 1rem; color: #d1d5db; max-width: 520px; margin-inline: auto; }
.cta-banner .hero-btns { margin-top: 1.5rem; }

/* ── Page hero (inner pages) ── */
.page-hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,60,0,.08), transparent);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-top: .75rem;
}
.page-hero p { margin-top: 1rem; color: var(--muted); max-width: 600px; margin-inline: auto; }

.breadcrumb {
  padding: 1rem 0 0;
  font-size: .8rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand-light); }

/* Prose (legal / about) */
.prose { max-width: 720px; margin: 0 auto; padding: 2.5rem 0 4rem; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 2rem 0 .75rem;
}
.prose h3 { font-size: 1.05rem; font-weight: 600; color: #e5e7eb; margin: 1.5rem 0 .5rem; }
.prose p, .prose li { color: var(--muted); line-height: 1.75; margin-bottom: .75rem; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }

/* Forms */
.form-card { max-width: 640px; margin: 0 auto; padding: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; color: #d1d5db; margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #fff;
  font-family: var(--font-body);
  font-size: .925rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: rgba(255,60,0,.5);
}
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: #08080a;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.footer-grid h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a { color: var(--muted); font-size: .875rem; text-decoration: none; }
.footer-grid a:hover { color: var(--brand-light); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  font-size: .8rem;
  color: #666;
}

/* Fade-in on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

.hidden { display: none !important; }

/* ── Live TMDB content ── */
.live-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.live-updated {
  font-size: .8rem;
  color: var(--muted);
  margin: 0;
}

.live-refresh-btn {
  padding: .5rem 1.1rem !important;
  font-size: .8rem !important;
}

.live-rows {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.live-row-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  padding-left: .25rem;
}

.live-row-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Auto-scrolling marquee rows */
.live-row-marquee {
  overflow: hidden;
  --marquee-duration: 40s;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.live-row-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: live-marquee-rtl var(--marquee-duration, 40s) linear infinite;
}

.live-row-marquee[data-direction="ltr"] .live-row-track {
  animation-name: live-marquee-ltr;
}

.live-row-marquee:hover .live-row-track,
.live-row-marquee:active .live-row-track,
.live-row-marquee--paused .live-row-track {
  animation-play-state: paused;
}

.live-row-set {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  padding-right: 1rem;
}

@keyframes live-marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes live-marquee-ltr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .live-row-track {
    animation: none !important;
  }
  .live-row-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .live-row-marquee .live-row-track {
    width: auto;
  }
  .live-row-set[aria-hidden="true"] {
    display: none;
  }
}

.live-row-scroll::-webkit-scrollbar { height: 8px; }
.live-row-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--brand-light), var(--brand-dark));
  border-radius: 4px;
}

.live-card {
  flex: 0 0 150px;
  width: 150px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  border-radius: .75rem;
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .live-card { flex-basis: 168px; width: 168px; }
}

.live-card-poster-wrap {
  position: relative;
  aspect-ratio: 2/3;
  background: #111;
  overflow: hidden;
}

.live-card-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.live-card:hover .live-card-poster {
  transform: scale(1.05);
}

.live-card-poster--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(145deg, #1a1a22, #0a0a0c);
  height: 100%;
}

.live-card-type {
  position: absolute;
  top: .5rem;
  left: .5rem;
  padding: .2rem .5rem;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: rgba(255, 60, 0, 0.9);
  color: #fff;
}

.live-card-rating {
  position: absolute;
  bottom: .5rem;
  left: .5rem;
  padding: .2rem .45rem;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.75);
  color: #fbbf24;
}

.live-card-meta {
  padding: .65rem .7rem .75rem;
}

.live-card-title {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.live-card-year {
  font-size: .7rem;
  color: var(--muted);
  margin: .25rem 0 0;
}

.live-card--skeleton .live-card-poster {
  background: linear-gradient(90deg, #1a1a22 25%, #252530 50%, #1a1a22 75%);
  background-size: 200% 100%;
  animation: live-shimmer 1.2s infinite;
  min-height: 225px;
}

.live-card--skeleton .live-card-meta span {
  display: block;
  height: 10px;
  border-radius: 4px;
  background: #252530;
  margin-top: .4rem;
}

.live-card--skeleton .live-card-meta span:last-child {
  width: 40%;
}

@keyframes live-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.live-attribution {
  margin-top: 2rem;
  text-align: center;
  font-size: .75rem;
  color: #666;
}

.live-attribution a {
  color: var(--brand-light);
}

.live-error {
  text-align: center;
  padding: 2rem;
  max-width: 420px;
  margin: 0 auto;
}

.live-error p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.live-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  color: #fff;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}
