/* ═══════════════════════════════════════════════════════════════════════
   StoreIPTV — Landing Design System ("Neon Streaming")
   Scoped ENTIRELY under body.page-public so it never leaks into the
   admin / customer / auth layouts, which keep the original Black+Gold
   theme from 00-tokens.css / pages/admin*.css / pages/customer_*.css.
   Near-black base + magenta/cyan/violet neon accents, sharp glowing
   borders instead of soft glass, bold condensed display type.
   ═══════════════════════════════════════════════════════════════════════ */

body.page-public {
  /* ─── Neon palette (public pages only) ──────────────────────────── */
  --pl-bg:            #050308;
  --pl-bg-soft:       #0a0611;
  --pl-surface:       #110b1c;
  --pl-surface-2:     #181024;
  --pl-surface-3:     #20182f;

  --pl-cyan:          #00f0ff;
  --pl-cyan-soft:     rgba(0, 240, 255, 0.12);
  --pl-violet:        #a742ff;
  --pl-violet-soft:   rgba(167, 66, 255, 0.14);
  --pl-pink:          #ff2ec6;
  --pl-pink-soft:     rgba(255, 46, 198, 0.14);
  --pl-lime:          #ccff00;

  --pl-grad-brand:    linear-gradient(120deg, var(--pl-pink) 0%, var(--pl-violet) 55%, var(--pl-cyan) 100%);
  --pl-grad-brand-r:  linear-gradient(300deg, var(--pl-pink) 0%, var(--pl-violet) 55%, var(--pl-cyan) 100%);
  --pl-grad-mesh:     radial-gradient(ellipse 65% 50% at 12% 0%, rgba(255,46,198,0.22) 0%, transparent 60%),
                       radial-gradient(ellipse 60% 50% at 92% 8%, rgba(0,240,255,0.20) 0%, transparent 55%),
                       radial-gradient(ellipse 60% 45% at 50% 105%, rgba(167,66,255,0.18) 0%, transparent 55%),
                       var(--pl-bg);

  --pl-line:          rgba(255,255,255,0.10);
  --pl-line-strong:   rgba(255,46,198,0.35);
  --pl-glass:         rgba(255,255,255,0.045);
  --pl-glass-strong:  rgba(255,255,255,0.09);

  --pl-text:          #f8f7fc;
  --pl-text-soft:     #cdc7de;
  --pl-text-muted:    #8f87a8;
  --pl-text-dim:      #5c5578;

  --pl-success:       #39ff8f;
  --pl-warning:       #ffd60a;

  --pl-font-display:  'Chakra Petch', 'Cairo', system-ui, sans-serif;
  --pl-font-body:     'Inter', 'Cairo', system-ui, -apple-system, sans-serif;

  --pl-r-sm:  8px;
  --pl-r-md:  14px;
  --pl-r-lg:  18px;
  --pl-r-xl:  24px;
  --pl-r-pill: 999px;

  --pl-shadow-glow:  0 0 0 1px rgba(255,46,198,0.4), 0 8px 40px rgba(255, 46, 198, 0.35);
  --pl-shadow-card:  0 20px 60px rgba(0, 0, 0, 0.6);
  --pl-tr:      200ms cubic-bezier(.4,0,.2,1);
  --pl-tr-slow: 420ms cubic-bezier(.16,1,.3,1);

  background:
    linear-gradient(rgba(255,46,198,0.035) 1px, transparent 1px) 0 0 / 100% 34px,
    var(--pl-bg);
  color: var(--pl-text);
  font-family: var(--pl-font-body);
}

body.page-public.rtl { direction: rtl; }
/* .pl-brand is intentionally NOT in this list: the "STORE IPTV" wordmark is
   Latin text and must render in the brand display font (Chakra Petch) in
   both LTR and RTL, so the logo looks identical on every page/language. */
body.page-public.rtl h1, body.page-public.rtl h2, body.page-public.rtl h3, body.page-public.rtl h4,
body.page-public.rtl .pl-plan-price, body.page-public.rtl .pl-hero-stat b,
body.page-public.rtl .pl-kpi-cell b { font-family: 'Cairo', var(--pl-font-body); }

/* ═══ Base resets for the public surface ═══════════════════════════ */
body.page-public .public-layout { background: transparent; }

body.page-public h1, body.page-public h2, body.page-public h3, body.page-public h4 {
  font-family: var(--pl-font-display);
  color: var(--pl-text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
body.page-public.rtl h1, body.page-public.rtl h2, body.page-public.rtl h3, body.page-public.rtl h4 {
  font-family: 'Cairo', var(--pl-font-display);
  letter-spacing: 0;
}
body.page-public p { color: var(--pl-text-soft); line-height: 1.7; margin: 0; }
body.page-public a { color: inherit; text-decoration: none; }
body.page-public .pl-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
body.page-public ::selection { background: var(--pl-cyan); color: #05070d; }

body.page-public .pl-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pl-cyan);
  background: var(--pl-cyan-soft);
  border: 1px solid rgba(0,240,255,0.35);
  padding: 6px 14px; border-radius: var(--pl-r-pill);
}
body.page-public .pl-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--pl-cyan);
  box-shadow: 0 0 10px var(--pl-cyan);
}

body.page-public .pl-grad-text {
  background: var(--pl-grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ═══ Buttons ═══════════════════════════════════════════════════════ */
body.page-public .pl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--pl-font-body); font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: var(--pl-r-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--pl-tr), box-shadow var(--pl-tr), background var(--pl-tr), border-color var(--pl-tr);
  white-space: nowrap;
}
body.page-public .pl-btn svg { width: 16px; height: 16px; flex: none; }
body.page-public .pl-btn-primary {
  background: var(--pl-grad-brand); color: #05010a; font-weight: 800;
  box-shadow: var(--pl-shadow-glow);
}
body.page-public .pl-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(0,240,255,0.5), 0 16px 50px rgba(0,240,255,0.4); }
body.page-public .pl-btn-ghost {
  background: rgba(255,255,255,0.02); color: var(--pl-text); border: 1.5px solid var(--pl-line-strong);
}
body.page-public .pl-btn-ghost:hover { background: var(--pl-pink-soft); border-color: var(--pl-cyan); box-shadow: 0 0 20px rgba(0,240,255,0.25); }
body.page-public .pl-btn-block { width: 100%; }
body.page-public .pl-btn-sm { padding: 9px 18px; font-size: 13.5px; }
body.page-public .pl-btn-wa { background: #14e06b; color: #04170c; font-weight: 800; box-shadow: 0 0 24px rgba(20,224,107,0.35); }
body.page-public .pl-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(20,224,107,0.55); }
/* Immediate tap feedback — the whole site sets -webkit-tap-highlight-color:
   transparent (01-reset.css) to kill the browser's default gray flash, but
   :hover alone barely registers on a touchscreen (no real hover, and some
   mobile browsers only apply it after release). Without a real :active
   state, tapping a button gives zero visible confirmation, so it feels
   unresponsive and people press-and-hold waiting for something to happen.
   This must win over :hover, so it's declared after the :hover rules. */
body.page-public .pl-btn:active { transform: scale(0.96); transition-duration: 80ms; }

/* ═══ NAVBAR (public_navbar.php) ═══════════════════════════════════ */
body.page-public .pl-nav {
  position: sticky; top: 0; z-index: var(--z-sticky, 100);
  background: rgba(5, 3, 8, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--pl-line-strong);
  box-shadow: 0 1px 24px rgba(255,46,198,0.12);
}
body.page-public .pl-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 20px; max-width: 1220px; margin: 0 auto;
}
body.page-public .pl-brand { display: flex; align-items: center; gap: 10px; font-family: var(--pl-font-display); font-weight: 700; font-size: 19px; }
body.page-public .pl-brand-mark {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: var(--pl-grad-brand); color: #05070d;
  font-family: var(--pl-font-display); font-size: 17px; font-weight: 800; letter-spacing: -0.5px;
}
body.page-public .pl-links { display: flex; align-items: center; gap: 4px; }
body.page-public .pl-link {
  padding: 9px 14px; border-radius: var(--pl-r-pill); font-size: 14.5px; font-weight: 600;
  color: var(--pl-text-soft); transition: color var(--pl-tr), background var(--pl-tr);
}
body.page-public .pl-link:hover { color: var(--pl-text); background: var(--pl-glass); }
body.page-public .pl-link.is-active { color: var(--pl-cyan); background: var(--pl-cyan-soft); }
body.page-public .pl-actions { display: flex; align-items: center; gap: 10px; }
body.page-public .pl-hide-mobile { display: inline-flex; }
body.page-public .pl-hide-desktop { display: none; }

body.page-public .pl-hamburger {
  display: none; flex-direction: column; gap: 4px; width: 38px; height: 38px;
  align-items: center; justify-content: center; border-radius: var(--pl-r-sm);
  background: var(--pl-glass); border: 1px solid var(--pl-line);
}
body.page-public .pl-hamburger span { width: 18px; height: 2px; background: var(--pl-text); border-radius: 2px; }

/* Lang switcher (shared component, restyled here for public context) */
body.page-public .lang-switcher { display: flex; gap: 2px; background: var(--pl-glass); border: 1px solid var(--pl-line); border-radius: var(--pl-r-pill); padding: 3px; }
body.page-public .lang-switcher a { padding: 5px 10px; border-radius: var(--pl-r-pill); font-size: 12px; font-weight: 700; color: var(--pl-text-muted); }
body.page-public .lang-switcher a.active { background: var(--pl-grad-brand); color: #05070d; }

/* Bell + user menu (kept functionally identical to shared navbar, new skin) */
body.page-public .pl-bell-wrap { position: relative; }
body.page-public .pl-bell-btn {
  position: relative; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; background: var(--pl-glass); border: 1px solid var(--pl-line); color: var(--pl-text-soft);
}
body.page-public .pl-bell-badge {
  position: absolute; top: -3px; right: -3px; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: var(--pl-pink); color: #05070d; font-size: 10px; font-weight: 800;
  display: grid; place-items: center; border: 2px solid var(--pl-bg);
}
body.page-public .pl-bell-dropdown, body.page-public .pl-user-dropdown {
  position: absolute; top: calc(100% + 10px); inset-inline-end: 0; width: 320px; max-height: 420px; overflow: auto;
  background: var(--pl-surface-2); border: 1px solid var(--pl-line-strong); border-radius: var(--pl-r-lg);
  box-shadow: var(--pl-shadow-card); opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--pl-tr), transform var(--pl-tr), visibility var(--pl-tr);
  z-index: var(--z-dropdown, 50);
}
body.page-public .pl-bell-wrap.is-open .pl-bell-dropdown,
body.page-public .pl-user-wrap.is-open .pl-user-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
body.page-public .pl-dd-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--pl-line); font-weight: 700; font-size: 14px; }
body.page-public .pl-dd-mark { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; background: var(--pl-cyan-soft); color: var(--pl-cyan); }
body.page-public .pl-mark-all { font-size: 12px; color: var(--pl-cyan); background: none; border: none; cursor: pointer; font-weight: 700; }
body.page-public .pl-notif { display: flex; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--pl-line); cursor: pointer; position: relative; }
body.page-public .pl-notif:hover { background: var(--pl-glass); }
body.page-public .pl-notif-dot { position: absolute; inset-inline-start: 6px; top: 18px; width: 7px; height: 7px; border-radius: 50%; background: var(--pl-cyan); }
body.page-public .pl-notif-icon { width: 32px; height: 32px; border-radius: 9px; background: var(--pl-surface-3); display: grid; place-items: center; flex: none; font-size: 15px; }
body.page-public .pl-notif-title { font-size: 13.5px; font-weight: 700; margin-bottom: 2px; }
body.page-public .pl-notif-text { font-size: 12.5px; color: var(--pl-text-muted); }
body.page-public .pl-notif-time { font-size: 11px; color: var(--pl-text-dim); }
body.page-public .pl-empty { padding: 30px 16px; text-align: center; color: var(--pl-text-muted); font-size: 13px; }
body.page-public .pl-dd-foot { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px; font-size: 13px; font-weight: 700; color: var(--pl-cyan); border-top: 1px solid var(--pl-line); }

body.page-public .pl-user-btn { display: flex; align-items: center; gap: 8px; background: var(--pl-glass); border: 1px solid var(--pl-line); border-radius: var(--pl-r-pill); padding: 5px 12px 5px 5px; }
body.page-public .pl-user-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--pl-grad-brand); color: #05070d; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
body.page-public .pl-user-name { font-size: 13.5px; font-weight: 600; max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
body.page-public .pl-user-dropdown a, body.page-public .pl-user-dropdown button {
  display: flex; align-items: center; gap: 8px; width: 100%; text-align: inline-start; padding: 11px 16px; font-size: 13.5px;
  color: var(--pl-text-soft); background: none; border: none; cursor: pointer; font-family: inherit;
}
body.page-public .pl-user-dropdown a:hover, body.page-public .pl-user-dropdown button:hover { background: var(--pl-glass); color: var(--pl-text); }
body.page-public .pl-user-divider { height: 1px; background: var(--pl-line); margin: 4px 0; }

@media (max-width: 900px) {
  body.page-public .pl-links { display: none; }
  body.page-public .pl-hide-mobile { display: none; }
  body.page-public .pl-hamburger { display: flex; flex: none; }
  body.page-public .pl-nav-inner { gap: 8px; padding: 12px 14px; }
  body.page-public .pl-actions { gap: 8px; flex: none; }
  /* Language switch must stay visible in the header on every screen size —
     not drawer-only — so it's kept, just tightened to fit next to the
     hamburger without fighting the brand name for width. */
  body.page-public .pl-actions .lang-switcher { padding: 2px; }
  body.page-public .pl-actions .lang-switcher a { padding: 4px 7px; font-size: 11px; }
  /* The primary CTA already lives at the bottom of the drawer — the top
     bar on mobile only needs the hamburger (+ bell, when logged in) so it
     never has to fight the brand name for width. */
  body.page-public .pl-actions > .pl-btn-primary,
  body.page-public .pl-actions > .pl-btn-ghost { display: none; }
}
@media (max-width: 420px) {
  body.page-public .pl-brand span:not(.pl-brand-mark) { display: none; }
  /* Keep the notification / account dropdowns as compact anchored panels on
     small phones — never edge-to-edge "window" width. Desktop unaffected. */
  body.page-public .pl-bell-dropdown,
  body.page-public .pl-user-dropdown { width: min(300px, calc(100vw - 20px)); max-height: 60vh; }
}

/* ═══ DRAWER (mobile menu, public_drawer.php) ══════════════════════ */
body.page-public .pl-drawer-overlay {
  position: fixed; inset: 0; background: rgba(5,3,8,0.75); backdrop-filter: blur(4px);
  z-index: var(--z-overlay, 900); opacity: 0; visibility: hidden; transition: opacity var(--pl-tr);
}
body.page-public .pl-drawer-overlay.is-open { opacity: 1; visibility: visible; }
body.page-public .pl-drawer {
  position: fixed; top: 0; bottom: 0; inset-inline-end: 0; width: min(320px, 86vw);
  background: var(--pl-surface); border-inline-start: 1px solid var(--pl-line-strong);
  z-index: var(--z-modal, 1000); transform: translateX(100%); transition: transform var(--pl-tr-slow);
  display: flex; flex-direction: column;
}
body.page-public.rtl .pl-drawer { transform: translateX(-100%); }
body.page-public .pl-drawer.is-open { transform: translateX(0); }
body.page-public .pl-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--pl-line); }
body.page-public .pl-drawer-close { width: 34px; height: 34px; border-radius: 50%; background: var(--pl-glass); border: 1px solid var(--pl-line); color: var(--pl-text); display: grid; place-items: center; cursor: pointer; }
body.page-public .pl-drawer-body { flex: 1; overflow-y: auto; padding: 12px; }
body.page-public .pl-drawer-body a { display: block; padding: 13px 12px; border-radius: var(--pl-r-md); font-size: 15px; font-weight: 600; color: var(--pl-text-soft); }
body.page-public .pl-drawer-body a:hover { background: var(--pl-glass); color: var(--pl-text); }
body.page-public .pl-drawer-hr { height: 1px; background: var(--pl-line); margin: 10px 4px; }
body.page-public .pl-drawer-foot { padding: 16px; border-top: 1px solid var(--pl-line); display: flex; flex-direction: column; gap: 10px; }

/* ═══ HERO / general section rhythm ═════════════════════════════════ */
body.page-public .pl-section { padding: clamp(56px, 9vw, 108px) 0; position: relative; }
body.page-public .pl-section-tight { padding: clamp(32px, 5vw, 56px) 0; }
body.page-public .pl-head { max-width: 720px; margin: 0 auto 44px; text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
body.page-public .pl-head h2 { font-size: clamp(28px, 4vw, 44px); }
body.page-public .pl-head p { font-size: 16.5px; max-width: 580px; }

body.page-public .pl-hero {
  padding: clamp(64px, 11vw, 130px) 0 clamp(50px, 8vw, 90px); background: var(--pl-bg);
  position: relative; overflow: hidden; border-bottom: 1px solid var(--pl-line);
}
body.page-public .pl-hero::before, body.page-public .pl-hero::after {
  content: ''; position: absolute; width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  border-radius: 50%; filter: blur(80px); opacity: 0.5; pointer-events: none;
  animation: pl-blob-float 14s ease-in-out infinite alternate;
}
body.page-public .pl-hero::before { background: var(--pl-pink); top: -18%; inset-inline-start: -12%; }
body.page-public .pl-hero::after { background: var(--pl-cyan); bottom: -22%; inset-inline-end: -10%; animation-delay: -7s; }
@keyframes pl-blob-float { from { transform: translate(0,0) scale(1); } to { transform: translate(3%, 4%) scale(1.1); } }

body.page-public .pl-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.82fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
body.page-public .pl-hero-copy h1 { font-size: clamp(34px, 5.4vw, 62px); margin-bottom: 20px; }
body.page-public .pl-hero-copy p { font-size: 17.5px; max-width: 520px; margin-bottom: 30px; }
body.page-public .pl-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
body.page-public .pl-hero-stats { display: flex; gap: clamp(20px, 4vw, 40px); flex-wrap: wrap; }
body.page-public .pl-hero-stat b { display: block; font-family: var(--pl-font-display); font-size: 26px; }
body.page-public .pl-hero-stat span { font-size: 12.5px; color: var(--pl-text-muted); }

/* Compact "small box" animated counters in the hero -- each stat is its
   own individually-bordered card (not the divided single-strip look of
   the full-page .pl-kpis), since 5 cells need to wrap gracefully. */
body.page-public .pl-hero-kpis {
  display: flex !important; flex-wrap: wrap; gap: 10px;
  padding: 0; margin-top: 4px; background: none; border: none;
}
body.page-public .pl-hero-kpis .pl-kpi-cell {
  flex: 1 1 100px; min-width: 100px;
  background: var(--pl-glass); border: 1px solid var(--pl-line);
  border-radius: var(--pl-r-md); padding: 14px 10px 12px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
body.page-public .pl-hero-kpis .pl-kpi-cell:hover {
  border-color: rgba(255,46,198,0.35); transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(167,66,255,0.18), 0 0 12px rgba(0,240,255,0.12);
}
body.page-public .pl-kpi-icon { font-size: 17px; line-height: 1; margin-bottom: 6px; }
body.page-public .pl-hero-kpis .pl-kpi-cell b { font-size: clamp(16px, 2.1vw, 21px); }
body.page-public .pl-hero-kpis .pl-kpi-cell span { font-size: 10px; line-height: 1.3; display: block; margin-top: 2px; }
body.page-public .pl-kpi-cell.pl-kpi-static b {
  background: var(--pl-grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* Brief pulse when a live-updated number changes (see effects.js) */
@keyframes pl-kpi-bump { 0% { transform: scale(1); } 40% { transform: scale(1.18); } 100% { transform: scale(1); } }
body.page-public .pl-count.is-bumping { display: inline-block; animation: pl-kpi-bump .5s ease; }
@media (max-width: 620px) {
  body.page-public .pl-hero-kpis .pl-kpi-cell { flex: 1 1 calc(50% - 5px); min-width: 0; padding: 12px 8px 10px; }
}

/* ═══ 3D poster carousel (hero visual) ═══════════════════════════════
   Every item shares one keyframe path (right edge → enlarged center →
   left edge) and is offset by a negative delay proportional to its index,
   so at any instant several posters are visible mid-flight while one sits
   large and sharp at the center — a coverflow effect with zero JS. */
body.page-public .pl-hero-carousel {
  position: relative; height: clamp(320px, 30vw, 420px);
  perspective: 1200px; overflow: hidden;
}
body.page-public .pl-hc-glow {
  position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 50% 50%, rgba(167,66,255,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(255,46,198,0.22) 0%, transparent 70%);
  filter: blur(20px);
}
body.page-public .pl-hc-track {
  position: absolute; inset: 0; z-index: 1;
  transform-style: preserve-3d;
}
body.page-public .pl-hc-item {
  position: absolute; inset: 0; margin: auto;
  width: 152px; aspect-ratio: 2 / 3;
  border-radius: var(--pl-r-lg); overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.55), 0 0 26px rgba(167,66,255,0.22);
  border: 1px solid var(--pl-line-strong);
  will-change: transform, opacity;
  animation: pl-hc-cycle 34s linear infinite;
  animation-delay: calc(-34s * var(--i) / var(--n));
  -webkit-box-reflect: below 6px linear-gradient(transparent, transparent 55%, rgba(0,0,0,0.35));
  /* Display-only visual: a CSS background-image, not an <img> element — so
     there is nothing for a mobile browser's native long-press "open image /
     save image" gesture to target. pointer-events:none + the -webkit-*
     resets below are extra guards against tap/drag/select on desktop too. */
  background-size: cover; background-position: center; background-repeat: no-repeat;
  pointer-events: none; -webkit-touch-callout: none; -webkit-user-select: none;
  user-select: none; -webkit-user-drag: none;
}
@keyframes pl-hc-cycle {
  0%   { transform: translateX(220%) translateZ(-260px) rotateY(-34deg) scale(0.68); opacity: 0; z-index: 1; }
  10%  { opacity: 0.75; }
  50%  { transform: translateX(0%) translateZ(60px) rotateY(0deg) scale(1.2); opacity: 1; z-index: 5; }
  90%  { opacity: 0.75; }
  100% { transform: translateX(-220%) translateZ(-260px) rotateY(34deg) scale(0.68); opacity: 0; z-index: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body.page-public .pl-hc-item { animation: none; position: static; opacity: 1; transform: none; width: 100px; }
  body.page-public .pl-hero-carousel { perspective: none; }
  body.page-public .pl-hc-track { position: static; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; height: auto; }
}

@media (max-width: 900px) {
  body.page-public .pl-hero-grid { grid-template-columns: 1fr; }
  body.page-public .pl-hero-carousel { order: -1; height: clamp(220px, 62vw, 300px); }
  body.page-public .pl-hc-item { width: 96px; animation-duration: 44s; }
  /* Mobile: wider X-spread + tighter opacity window so the narrow viewport
     shows a clean 3-poster coverflow, not 7 overlapping slivers. Same 5 stops. */
  @keyframes pl-hc-cycle {
    0%   { transform: translateX(205%) translateZ(-180px) rotateY(-28deg) scale(0.64); opacity: 0; z-index: 1; }
    22%  { opacity: 0; }
    50%  { transform: translateX(0%) translateZ(34px) rotateY(0deg) scale(1.16); opacity: 1; z-index: 5; }
    78%  { opacity: 0; }
    100% { transform: translateX(-205%) translateZ(-180px) rotateY(28deg) scale(0.64); opacity: 0; z-index: 1; }
  }
}

/* Logo marquee strip — original brand colors, larger, with a subtle neon lift */
/* direction:ltr is required, not cosmetic — same Chromium bug fixed on
   .pl-sports-marquee: a flex row with width:max-content miscalculates
   its width once it has ~19+ children under an RTL ancestor (this strip
   has 32 — 16 logos doubled), causing a visible break in the loop. Fine
   in LTR at any count, so forcing ltr on this decorative track sidesteps
   it without affecting anything else on the page. */
body.page-public .pl-marquee { overflow: hidden; border-block: 1px solid var(--pl-line); padding: 30px 0; background: var(--pl-bg-soft); direction: ltr; }
body.page-public .pl-marquee-track { display: flex; gap: 14px; width: max-content; animation: pl-scroll 36s linear infinite; align-items: center; }
/* Same "frosted glass" chip treatment as the sports marquee directly below
   it, so the two strips read as one consistent style -- each logo boxed in
   its own tinted, glowing panel instead of floating free. */
body.page-public .pl-media-chip {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 118px; height: 56px; padding: 10px 14px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(120% 140% at 50% 35%, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.07) 55%, rgba(255,255,255,0.03) 100%),
    linear-gradient(160deg, rgba(167,66,255,0.16), rgba(0,240,255,0.09));
  box-shadow: 0 0 14px rgba(167,66,255,0.16), 0 0 20px rgba(255,46,198,0.10), 0 0 10px rgba(0,240,255,0.10);
  transition: transform var(--pl-tr), box-shadow var(--pl-tr), border-color var(--pl-tr);
}
body.page-public .pl-media-chip img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
body.page-public .pl-media-chip:hover {
  transform: translateY(-3px) scale(1.06);
  border-color: rgba(255,46,198,0.5);
  box-shadow: 0 0 18px rgba(167,66,255,0.30), 0 0 26px rgba(255,46,198,0.20), 0 0 14px rgba(0,240,255,0.18);
}
/* Mobile: shrink the whole strip (padding + gap + chips) so it reads as a
   thin ticker, matching .pl-sports-marquee below. Desktop (>900px) is
   untouched — every rule here is inside a max-width media query. */
@media (max-width: 900px) {
  body.page-public .pl-marquee { padding: 16px 0; }
  body.page-public .pl-marquee-track { gap: 10px; }
  body.page-public .pl-media-chip { width: 96px; height: 48px; padding: 8px 12px; }
}
@media (max-width: 620px) {
  body.page-public .pl-marquee { padding: 12px 0; }
  body.page-public .pl-marquee-track { gap: 8px; }
  body.page-public .pl-media-chip { width: 78px; height: 40px; padding: 6px 10px; border-radius: 10px; }
}
@media (max-width: 400px) {
  body.page-public .pl-marquee { padding: 9px 0; }
  body.page-public .pl-media-chip { width: 66px; height: 34px; padding: 5px 8px; }
}
@keyframes pl-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sports/leagues ticker — sits directly under the streaming marquee above,
   same panel background so the two read as one native strip; moves in the
   opposite direction (left→right) as a simple visual counterpoint.
   direction:ltr is required here, not cosmetic: Chromium miscalculates
   `width:max-content` on a flex row once it has ~19+ children when an RTL
   ancestor is in effect (confirmed via isolated repro — works at n≤18,
   silently collapses to near-zero width at n≥19 under dir="rtl", fine in
   dir="ltr" at any count). Forcing ltr on this purely-decorative,
   aria-hidden ticker sidesteps the bug; visual order is irrelevant here. */
body.page-public .pl-sports-marquee {
  overflow: hidden; border-block: 1px solid var(--pl-line); padding: 22px 0;
  background: var(--pl-bg-soft); direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
body.page-public .pl-sports-track { display: flex; gap: 14px; width: max-content; animation: pl-scroll-reverse 40s linear infinite; align-items: center; }
body.page-public .pl-sports-chip {
  /* --chip-rgb (pages/home.php $sportsLogos) tints ONLY the hover glow —
     it is never applied to the logo image itself, which always renders
     at its own true, unfiltered colors. The card behind it is a dark,
     semi-transparent "frosted glass" panel (site neon palette) rather
     than a white/gray square — the soft inner radial keeps naturally
     dark-lined marks (UCL/UEL/EPL) legible without turning the panel
     itself light or boxy. */
  --chip-rgb: 143,135,168;
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 118px; height: 56px; padding: 10px 14px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  /* No backdrop-filter here on purpose — a live blur recomputed every
     frame across 42 continuously-translating chips was heavy enough to
     steal frames from the marquee animations (visible as stutter/pauses).
     A slightly stronger gradient gives nearly the same "glass" look for
     free, since it's just a static paint, not a per-frame blur sample. */
  background:
    radial-gradient(120% 140% at 50% 35%, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.07) 55%, rgba(255,255,255,0.03) 100%),
    linear-gradient(160deg, rgba(167,66,255,0.16), rgba(0,240,255,0.09));
  box-shadow: 0 0 14px rgba(167,66,255,0.16), 0 0 20px rgba(255,46,198,0.10), 0 0 10px rgba(0,240,255,0.10);
  transition: transform var(--pl-tr), box-shadow var(--pl-tr), border-color var(--pl-tr);
}
body.page-public .pl-sports-chip img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  /* No filter here on purpose — grayscale/brightness/contrast would alter
     the official brand colors, which this component must preserve as-is. */
}
body.page-public .pl-sports-chip:hover {
  transform: translateY(-3px) scale(1.08);
  border-color: rgba(var(--chip-rgb), 0.6);
  box-shadow:
    0 0 18px rgba(167,66,255,0.30), 0 0 26px rgba(255,46,198,0.20), 0 0 14px rgba(0,240,255,0.18),
    0 0 22px rgba(var(--chip-rgb), 0.4);
}
@keyframes pl-scroll-reverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (max-width: 900px) {
  body.page-public .pl-sports-marquee { padding: 18px 0; }
  body.page-public .pl-sports-track { gap: 10px; }
  body.page-public .pl-sports-chip { width: 96px; height: 48px; padding: 8px 12px; }
}
@media (max-width: 620px) {
  body.page-public .pl-sports-marquee { padding: 12px 0; }
  body.page-public .pl-sports-track { gap: 8px; }
  body.page-public .pl-sports-chip { width: 78px; height: 40px; padding: 6px 10px; border-radius: 10px; }
}
@media (max-width: 400px) {
  body.page-public .pl-sports-marquee { padding: 9px 0; }
  body.page-public .pl-sports-chip { width: 66px; height: 34px; padding: 5px 8px; }
}

/* ═══ Cards / grids ═════════════════════════════════════════════════ */
body.page-public .pl-grid { display: grid; gap: 20px; }
body.page-public .pl-grid-2 { grid-template-columns: repeat(2, 1fr); }
body.page-public .pl-grid-3 { grid-template-columns: repeat(3, 1fr); }
body.page-public .pl-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { body.page-public .pl-grid-3, body.page-public .pl-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { body.page-public .pl-grid-2, body.page-public .pl-grid-3, body.page-public .pl-grid-4 { grid-template-columns: 1fr; } }

body.page-public .pl-card {
  background: var(--pl-surface); border: 1px solid var(--pl-line); border-radius: var(--pl-r-lg);
  padding: 26px; transition: transform var(--pl-tr), border-color var(--pl-tr), background var(--pl-tr), box-shadow var(--pl-tr);
}
body.page-public .pl-card:hover { transform: translateY(-4px); border-color: var(--pl-pink); background: var(--pl-surface-2); box-shadow: 0 0 30px rgba(255,46,198,0.18); }
body.page-public .pl-card-icon {
  width: 46px; height: 46px; border-radius: var(--pl-r-md); display: grid; place-items: center;
  background: var(--pl-pink-soft); color: var(--pl-pink); font-size: 20px; margin-bottom: 16px;
}
body.page-public .pl-card h3 { font-size: 17px; margin-bottom: 8px; }
body.page-public .pl-card p { font-size: 14px; }

body.page-public .pl-kpis { display: flex; flex-wrap: wrap; gap: 14px; }
body.page-public .pl-kpi { flex: 1; min-width: 140px; background: var(--pl-glass); border: 1px solid var(--pl-line); border-radius: var(--pl-r-lg); padding: 20px; text-align: center; }
body.page-public .pl-kpi b { display: block; font-family: var(--pl-font-display); font-size: 26px; background: var(--pl-grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
body.page-public .pl-kpi span { font-size: 12.5px; color: var(--pl-text-muted); }

/* ═══ Pricing cards ══════════════════════════════════════════════════ */
body.page-public .pl-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; min-width: 0; }
@media (max-width: 1100px) { body.page-public .pl-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { body.page-public .pl-pricing-grid { grid-template-columns: 1fr; } }

/* /reseller shows 3 wholesale packs; the shared fixed 4-column grid above
   leaves an empty 4th column so the cards look off-centre (right-shifted in
   RTL). This modifier centres that instance only — /pricing and the homepage
   (4 packs each) are untouched. Card footprint and the 620px full-width
   breakpoint are preserved. */
body.page-public .pl-pricing-grid--center { display: flex; flex-wrap: wrap; justify-content: center; }
body.page-public .pl-pricing-grid--center > .pl-plan { flex: 1 1 240px; max-width: 282px; }
@media (max-width: 620px) {
  body.page-public .pl-pricing-grid--center > .pl-plan { flex-basis: 100%; max-width: none; }
}

body.page-public .pl-plan {
  /* min-width:0 overrides the grid item's default min-width:auto — without
     it, a long unbreakable line inside (feature text, price+badge row)
     forces the whole 1fr track wider than the viewport on mobile instead
     of wrapping, causing the card to overflow/clip at the edge. */
  position: relative; background: var(--pl-surface); border: 1px solid var(--pl-line);
  border-radius: var(--pl-r-xl); padding: 30px 24px; display: flex; flex-direction: column; gap: 18px;
  transition: transform var(--pl-tr), border-color var(--pl-tr);
  min-width: 0;
}
body.page-public .pl-plan:hover { transform: translateY(-4px); }
body.page-public .pl-plan.is-popular {
  border-color: var(--pl-pink); background: linear-gradient(180deg, rgba(255,46,198,0.08), var(--pl-surface) 40%);
  box-shadow: var(--pl-shadow-glow); animation: pl-plan-pulse 3.2s ease-in-out infinite;
}
@keyframes pl-plan-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,46,198,0.4), 0 8px 40px rgba(255,46,198,0.30); }
  50% { box-shadow: 0 0 0 1px rgba(255,46,198,0.6), 0 8px 55px rgba(255,46,198,0.55); }
}
body.page-public .pl-plan-badge {
  position: absolute; top: -13px; inset-inline-start: 50%; transform: translateX(-50%);
  background: var(--pl-grad-brand); color: #05070d; font-size: 11.5px; font-weight: 800;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
body.page-public .pl-plan-name { font-size: 15.5px; font-weight: 700; color: var(--pl-text-soft); line-height: 1.35; letter-spacing: 0.1px; }
body.page-public .pl-plan-desc { font-size: 12.5px; line-height: 1.6; color: var(--pl-text-muted); margin: -4px 0 2px; }
body.page-public .pl-quality-row {
  display: flex; align-items: center; gap: 7px; margin: 2px 0 4px;
}
body.page-public .pl-quality-tag {
  font-family: var(--pl-font-display); font-size: 12px; font-weight: 800; letter-spacing: 0.3px;
  padding: 3px 9px; border-radius: 7px; border: 1px solid rgba(255,255,255,0.12);
  color: var(--pl-text-soft); background: rgba(255,255,255,0.04);
}
body.page-public .pl-quality-tag.is-hi {
  color: #05070d; background: var(--pl-grad-brand); border-color: transparent;
  text-shadow: none;
  box-shadow: 0 0 14px rgba(167,66,255,0.55), 0 0 4px rgba(0,240,255,0.35);
}
body.page-public .pl-quality-sep { color: var(--pl-text-dim); font-size: 11px; }
body.page-public .pl-plan-price { display: flex; align-items: baseline; gap: 6px; font-family: var(--pl-font-display); }
body.page-public .pl-plan-price .amt { font-size: 40px; font-weight: 700; }
body.page-public .pl-plan-price .cur { font-size: 16px; color: var(--pl-text-muted); }
body.page-public .pl-plan-price .per { font-size: 13px; color: var(--pl-text-muted); font-family: var(--pl-font-body); }
body.page-public .pl-plan-strike { font-size: 13px; color: var(--pl-text-dim); text-decoration: line-through; }
body.page-public .pl-plan-save { display: inline-block; font-size: 11.5px; font-weight: 700; color: var(--pl-success); background: rgba(52,211,153,0.12); padding: 3px 10px; border-radius: 999px; width: fit-content; }
body.page-public .pl-plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
body.page-public .pl-plan-features li { list-style: none; display: flex; gap: 9px; font-size: 13.5px; color: var(--pl-text-soft); align-items: flex-start; }
body.page-public .pl-plan-features li span { min-width: 0; overflow-wrap: break-word; }
body.page-public .pl-plan-features svg { flex: none; width: 16px; height: 16px; color: var(--pl-cyan); margin-top: 2px; }
body.page-public .pl-plan-countdown {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; color: var(--pl-text-muted); font-variant-numeric: tabular-nums;
  background: var(--pl-glass); border-radius: var(--pl-r-sm); padding: 7px;
}
body.page-public .pl-plan-countdown-val { font-weight: 800; color: var(--pl-warning); font-family: var(--pl-font-display); letter-spacing: .02em; }
body.page-public .pl-plan-countdown.is-warn { background: rgba(251,191,36,0.10); }
body.page-public .pl-plan-countdown.is-danger { background: rgba(239,68,68,0.12); }
body.page-public .pl-plan-countdown.is-danger .pl-plan-countdown-val { color: #f87171; }
body.page-public .pl-plan-ribbon {
  position: absolute; top: 0; inset-inline-end: 20px; transform: translateY(-50%);
  font-size: 11.5px; font-weight: 800; padding: 5px 12px; border-radius: 999px;
  background: var(--pl-grad-brand); color: #05070d; white-space: nowrap;
}
body.page-public .pl-plan-ribbon.is-personal { background: linear-gradient(120deg, var(--pl-pink), var(--pl-violet)); }
body.page-public .pl-plan-ribbon.is-best { background: linear-gradient(120deg, var(--pl-warning), var(--pl-pink)); animation: pl-shimmer 3s ease-in-out infinite; }
@keyframes pl-shimmer { 0%,100% { box-shadow: 0 4px 14px rgba(255,46,198,.3); } 50% { box-shadow: 0 8px 24px rgba(255,46,198,.5); } }

body.page-public .pl-urgency-strip {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  background: linear-gradient(120deg, var(--pl-violet-soft), var(--pl-cyan-soft));
  border: 1px solid var(--pl-line-strong); border-radius: var(--pl-r-lg);
  padding: 14px 22px; margin-bottom: 30px; text-align: center;
}
body.page-public .pl-urgency-count { font-family: var(--pl-font-display); font-weight: 700; color: var(--pl-cyan); }
body.page-public .pl-urgency-strip .pl-btn { flex: none; }

/* ═══ FAQ accordion ══════════════════════════════════════════════════ */
body.page-public .pl-faq-search { max-width: 460px; margin: 0 auto 30px; position: relative; }
body.page-public .pl-faq-search input {
  width: 100%; padding: 13px 44px; border-radius: var(--pl-r-pill); border: 1px solid var(--pl-line-strong);
  background: var(--pl-glass); color: var(--pl-text); font-size: 14px; font-family: inherit;
}
body.page-public .pl-faq-search svg { position: absolute; inset-inline-start: 16px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--pl-text-muted); }
body.page-public .pl-faq-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
body.page-public .pl-faq-tab { padding: 8px 16px; border-radius: var(--pl-r-pill); font-size: 13px; font-weight: 700; background: var(--pl-glass); border: 1px solid var(--pl-line); color: var(--pl-text-soft); cursor: pointer; }
body.page-public .pl-faq-tab.is-active { background: var(--pl-grad-brand); color: #05070d; border-color: transparent; }
body.page-public .pl-faq-group { margin-bottom: 30px; }
body.page-public .pl-faq-group-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--pl-text-muted); margin-bottom: 12px; display: flex; gap: 8px; align-items: center; }
body.page-public .pl-faq-item { border: 1px solid var(--pl-line); border-radius: var(--pl-r-md); margin-bottom: 10px; overflow: hidden; background: var(--pl-surface); }
body.page-public .pl-faq-q { width: 100%; text-align: inline-start; padding: 16px 18px; background: none; border: none; color: var(--pl-text); font-size: 14.5px; font-weight: 700; font-family: inherit; cursor: pointer; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
body.page-public .pl-faq-q svg { flex: none; width: 16px; height: 16px; transition: transform var(--pl-tr); color: var(--pl-cyan); }
body.page-public .pl-faq-item.is-open .pl-faq-q svg { transform: rotate(180deg); }
body.page-public .pl-faq-a { max-height: 0; overflow: hidden; transition: max-height var(--pl-tr-slow); }
body.page-public .pl-faq-item.is-open .pl-faq-a { max-height: 400px; }
body.page-public .pl-faq-a-inner { padding: 0 18px 16px; font-size: 13.5px; color: var(--pl-text-muted); line-height: 1.7; }

/* ═══ Contact scenario cards + channels + form ═══════════════════════ */
body.page-public .pl-channel {
  position: relative; display: flex; align-items: center; gap: 18px; padding: 18px 22px;
  background: var(--pl-surface); border: 1px solid var(--pl-line); border-radius: var(--pl-r-lg);
  transition: border-color var(--pl-tr), transform var(--pl-tr), background var(--pl-tr);
}
body.page-public .pl-channel:hover { transform: translateY(-2px); border-color: var(--pl-cyan); }
body.page-public .pl-channel.is-primary { border: 1.5px solid rgba(31,174,92,0.45); background: linear-gradient(135deg, rgba(31,174,92,0.10), var(--pl-surface)); }
body.page-public .pl-channel-badge { position: absolute; top: -11px; inset-inline-start: 20px; background: var(--pl-grad-brand); color: #05070d; font-size: 10.5px; font-weight: 800; padding: 3px 11px; border-radius: 999px; }
body.page-public .pl-channel-icon { flex: none; width: 52px; height: 52px; border-radius: var(--pl-r-md); display: grid; place-items: center; background: #25D366; color: #fff; }
body.page-public .pl-channel-icon.is-email { background: var(--pl-cyan-soft); color: var(--pl-cyan); }
body.page-public .pl-channel-icon.is-tg { background: #229ED9; color: #fff; }
body.page-public .pl-channel-title { font-family: var(--pl-font-display); font-size: 17px; font-weight: 700; }
body.page-public .pl-channel-sub { font-size: 12.5px; color: var(--pl-text-muted); }
body.page-public .pl-channel-meta { font-size: 11.5px; color: var(--pl-text-dim); font-family: var(--pl-font-mono, monospace); margin-top: 2px; }
body.page-public .pl-channel-arrow { margin-inline-start: auto; color: var(--pl-cyan); opacity: .6; transition: opacity var(--pl-tr), transform var(--pl-tr); }
body.page-public .pl-channel:hover .pl-channel-arrow { opacity: 1; transform: translateX(4px); }
body.page-public .pl-status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); border-radius: 999px; font-size: 12.5px; font-weight: 700; color: var(--pl-success); }
body.page-public .pl-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pl-success); animation: pl-blink 1.8s ease-in-out infinite; }
@keyframes pl-blink { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

body.page-public .pl-scenario { text-align: start; cursor: pointer; }
body.page-public .pl-timeline { display: flex; flex-direction: column; gap: 0; }
body.page-public .pl-timeline-item { display: flex; gap: 18px; padding-bottom: 30px; position: relative; }
body.page-public .pl-timeline-item:not(:last-child)::before { content: ''; position: absolute; inset-inline-start: 19px; top: 40px; bottom: 0; width: 2px; background: var(--pl-line); }
body.page-public .pl-timeline-num { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--pl-grad-brand); color: #05070d; display: grid; place-items: center; font-weight: 800; font-family: var(--pl-font-display); }

/* ═══ Apps page ══════════════════════════════════════════════════════ */
body.page-public .pl-app-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
body.page-public .pl-app-icon { width: 56px; height: 56px; border-radius: var(--pl-r-md); background: var(--pl-surface-3); display: grid; place-items: center; font-size: 24px; }
body.page-public .pl-tag { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: var(--pl-violet-soft); color: var(--pl-violet); }

/* Apps page — divider, code chips, platform grid */
body.page-public .pl-divider-row { display: flex; align-items: center; gap: 14px; max-width: 680px; margin: 0 auto 40px; }
body.page-public .pl-divider-row .line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--pl-line-strong), transparent); }
body.page-public .pl-divider-row .pl-eyebrow { flex: none; }

body.page-public .pl-code-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%;
  padding: 12px 16px; background: var(--pl-glass); border: 1px solid var(--pl-line-strong);
  border-radius: var(--pl-r-md); cursor: pointer; font-family: inherit; color: inherit; text-align: start;
  transition: background var(--pl-tr), border-color var(--pl-tr);
}
body.page-public .pl-code-chip:hover { background: var(--pl-glass-strong); border-color: var(--pl-cyan); }
body.page-public .pl-code-chip.is-copied { border-color: var(--pl-success); background: rgba(52,211,153,0.12); }
body.page-public .pl-code-chip-label { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--pl-text-muted); font-weight: 700; }
body.page-public .pl-code-chip-value { font-family: var(--pl-font-display); font-size: 18px; font-weight: 700; color: var(--pl-cyan); letter-spacing: .03em; }
body.page-public .pl-code-chip-ico { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--pl-cyan-soft); color: var(--pl-cyan); display: grid; place-items: center; }

body.page-public .pl-platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
body.page-public .pl-platform-link {
  display: flex; align-items: center; gap: 12px; padding: 13px 15px;
  background: var(--pl-glass); border: 1px solid var(--pl-line); border-radius: var(--pl-r-md);
  transition: border-color var(--pl-tr), background var(--pl-tr), transform var(--pl-tr);
}
body.page-public .pl-platform-link:hover { border-color: var(--pl-cyan); background: var(--pl-glass-strong); transform: translateY(-2px); }
body.page-public .pl-platform-icon { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--pl-surface-3); display: grid; place-items: center; font-size: 17px; }
body.page-public .pl-platform-name { font-size: 13.5px; font-weight: 700; }
body.page-public .pl-platform-sub { font-size: 11.5px; color: var(--pl-text-muted); }

body.page-public .pl-hotplayer { padding: clamp(24px, 4vw, 40px); background: linear-gradient(160deg, var(--pl-violet-soft), var(--pl-surface) 60%); border: 1px solid var(--pl-line-strong); border-radius: var(--pl-r-xl); }
body.page-public .pl-hotplayer-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 1px dashed var(--pl-line-strong); margin-bottom: 22px; }

body.page-public .pl-benefit-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 18px 0; border-top: 1px dashed var(--pl-line); border-bottom: 1px dashed var(--pl-line); margin: 24px 0; }
body.page-public .pl-benefit-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; background: var(--pl-glass); border: 1px solid var(--pl-line); border-radius: 999px; font-size: 12.5px; font-weight: 600; }

body.page-public .pl-setup-panel { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; background: var(--pl-surface); border: 1px solid var(--pl-line); border-radius: var(--pl-r-lg); padding: 26px; }
body.page-public .pl-setup-icon { flex: none; width: 52px; height: 52px; border-radius: var(--pl-r-md); background: var(--pl-cyan-soft); display: grid; place-items: center; font-size: 22px; }
body.page-public .pl-setup-actions { display: flex; gap: 10px; margin-inline-start: auto; }

/* ═══ Legal docs ═════════════════════════════════════════════════════ */
body.page-public .pl-legal-hero { text-align: center; padding: clamp(50px,8vw,80px) 0 40px; border-bottom: 1px solid var(--pl-line); background: var(--pl-grad-mesh); }
body.page-public .pl-legal-hero h1 { font-size: clamp(28px, 4.2vw, 42px); margin: 16px 0; }
body.page-public .pl-legal-meta { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; padding: 8px 16px; background: var(--pl-glass); border: 1px solid var(--pl-line); border-radius: 999px; font-size: 12.5px; color: var(--pl-text-muted); margin-top: 16px; }
body.page-public .pl-legal-doc { max-width: 820px; margin: 50px auto; background: var(--pl-surface); border: 1px solid var(--pl-line); border-radius: var(--pl-r-xl); padding: clamp(24px, 4vw, 48px); }
body.page-public .pl-legal-doc h2 { font-size: 19px; color: var(--pl-cyan); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--pl-line); }
body.page-public .pl-legal-doc h2:first-child { margin-top: 0; }
body.page-public .pl-legal-doc h3 { font-size: 15px; margin: 18px 0 8px; }
body.page-public .pl-legal-doc p, body.page-public .pl-legal-doc li { font-size: 14px; color: var(--pl-text-soft); margin-bottom: 8px; }
body.page-public .pl-legal-doc ul { padding-inline-start: 20px; margin: 10px 0; }
body.page-public .pl-legal-doc strong { color: var(--pl-text); }
body.page-public .pl-legal-doc ol { padding-inline-start: 20px; margin: 10px 0; }
body.page-public .pl-legal-doc li { margin-bottom: 8px; }
body.page-public .pl-legal-contact { margin-top: 34px; padding: 22px; background: var(--pl-glass); border: 1px solid var(--pl-line-strong); border-radius: var(--pl-r-lg); text-align: center; }
body.page-public .pl-legal-contact h3 { font-size: 16px; margin-bottom: 6px; }
body.page-public .pl-legal-contact-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }

/* ═══ Footer ═════════════════════════════════════════════════════════ */
body.page-public .pl-footer { border-top: 1px solid var(--pl-line); background: var(--pl-bg-soft); padding: 56px 0 26px; margin-top: 40px; }
body.page-public .pl-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; margin-bottom: 40px; }
@media (max-width: 800px) { body.page-public .pl-footer-grid { grid-template-columns: repeat(2, 1fr); } }
body.page-public .pl-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--pl-text-muted); margin-bottom: 14px; }
body.page-public .pl-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
body.page-public .pl-footer a { font-size: 14px; color: var(--pl-text-soft); }
body.page-public .pl-footer a:hover { color: var(--pl-cyan); }
body.page-public .pl-footer-social { display: flex; gap: 10px; margin-top: 16px; }
body.page-public .pl-footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--pl-glass); border: 1px solid var(--pl-line); display: grid; place-items: center; color: var(--pl-text-soft); }
body.page-public .pl-footer-social a:hover { color: var(--pl-cyan); border-color: var(--pl-cyan); }
body.page-public .pl-payment-methods { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 26px 0; border-top: 1px solid var(--pl-line); }
body.page-public .pl-payment-label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--pl-text-muted); }
body.page-public .pl-payment-icons { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
body.page-public .pl-pay-icon { display: inline-flex; border-radius: 7px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.35); transition: transform .18s ease; }
body.page-public .pl-pay-icon:hover { transform: translateY(-2px); }
/* Pin the icon SVGs to a real box so nothing (incl. a stray height:auto) can
   let Chrome Mobile stretch them. Ratio matches the 48x30 viewBox. */
body.page-public .pl-pay-icon svg { width: 46px; height: 29px; display: block; flex: none; }
body.page-public .pl-footer-social a svg { width: 16px; height: 16px; display: block; flex: none; }
@media (max-width: 400px) {
  body.page-public .pl-payment-icons { gap: 7px; }
  body.page-public .pl-pay-icon svg { width: 40px; height: 25px; }
}
body.page-public .pl-footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; border-top: 1px solid var(--pl-line); font-size: 12.5px; color: var(--pl-text-dim); }

/* ═══ Scroll reveal (driven by effects.js) ══════════════════════════ */
body.page-public [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1); }
body.page-public [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ═══ Reseller page — steps / ROI cards ═════════════════════════════ */
body.page-public .pl-step { position: relative; padding: 30px 20px 20px; }
body.page-public .pl-step-num {
  position: absolute; top: -18px; inset-inline-start: 20px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--pl-grad-brand); color: #05070d; display: grid; place-items: center;
  font-family: var(--pl-font-display); font-weight: 800; font-size: 16px;
}
body.page-public .pl-roi-card { position: relative; display: flex; flex-direction: column; gap: 10px; }
body.page-public .pl-roi-card.is-featured { border-color: var(--pl-cyan); background: linear-gradient(180deg, rgba(0,240,255,0.10), var(--pl-surface) 50%); }
body.page-public .pl-roi-tag { position: absolute; top: -12px; inset-inline-start: 18px; background: var(--pl-grad-brand); color: #05070d; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; }
body.page-public .pl-roi-pack { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--pl-cyan); font-weight: 700; }
body.page-public .pl-roi-credits { font-family: var(--pl-font-display); font-size: 26px; font-weight: 800; }
body.page-public .pl-roi-credits span { font-size: 13px; color: var(--pl-text-muted); font-family: var(--pl-font-body); font-weight: 400; margin-inline-start: 6px; }
body.page-public .pl-roi-row { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid var(--pl-line); font-size: 13.5px; color: var(--pl-text-soft); }
body.page-public .pl-roi-row strong { color: var(--pl-text); font-family: var(--pl-font-display); }
body.page-public .pl-roi-row.is-profit { background: rgba(52,211,153,0.08); margin-inline: -20px; padding-inline: 20px; border-top-color: rgba(52,211,153,0.3); }
body.page-public .pl-roi-row.is-profit strong { color: var(--pl-success); font-size: 17px; }
body.page-public .pl-final-banner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 34px; background: var(--pl-grad-mesh); border: 1px solid var(--pl-line-strong); border-radius: var(--pl-r-xl); }
body.page-public .pl-panel-banner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding: 24px; background: var(--pl-surface); border: 1px solid var(--pl-line); border-radius: var(--pl-r-lg); }

/* ═══ About page — pillars / KPI strip / personas / prose ══════════ */
body.page-public .pl-cinema-tags { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; background: var(--pl-glass); border: 1px solid var(--pl-line); border-radius: 999px; font-family: var(--pl-font-display); font-weight: 700; color: var(--pl-cyan); font-size: 13px; letter-spacing: .08em; }
body.page-public .pl-cinema-tags span:nth-child(even) { color: var(--pl-text-dim); font-size: 11px; }
body.page-public .pl-prose p { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.9; margin-bottom: 18px; }
body.page-public .pl-prose p:first-of-type::first-letter { font-family: var(--pl-font-display); font-size: 3em; font-weight: 800; color: var(--pl-cyan); float: inline-start; line-height: .9; padding-inline-end: 10px; }

body.page-public .pl-pillar { position: relative; padding: 26px 20px 20px; }
body.page-public .pl-pillar-num { position: absolute; top: -10px; inset-inline-start: 18px; font-family: var(--pl-font-display); font-size: 11px; font-weight: 800; color: var(--pl-cyan); background: var(--pl-bg); padding: 2px 9px; border-radius: 6px; border: 1px solid var(--pl-line-strong); }

body.page-public .pl-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 30px 20px; background: linear-gradient(135deg, var(--pl-cyan-soft), var(--pl-violet-soft)); border: 1px solid var(--pl-line-strong); border-radius: var(--pl-r-xl); }
body.page-public .pl-kpi-cell { text-align: center; border-inline-end: 1px solid var(--pl-line); }
body.page-public .pl-kpi-cell:last-child { border-inline-end: none; }
body.page-public .pl-kpi-cell b { display: block; font-family: var(--pl-font-display); font-size: clamp(22px, 3vw, 32px); background: var(--pl-grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
body.page-public .pl-kpi-cell span { font-size: 11.5px; color: var(--pl-text-muted); text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 700px) { body.page-public .pl-kpis { grid-template-columns: repeat(2, 1fr); } body.page-public .pl-kpi-cell:nth-child(2) { border-inline-end: none; } }

body.page-public .pl-promise { display: flex; gap: 16px; padding: 20px; background: var(--pl-surface); border: 1px solid var(--pl-line); border-inline-start: 3px solid var(--pl-cyan); border-radius: var(--pl-r-md); }
body.page-public .pl-promise-check { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--pl-grad-brand); color: #05070d; display: grid; place-items: center; font-weight: 800; }

body.page-public .pl-persona { text-align: center; }
body.page-public .pl-persona-emoji { font-size: 34px; margin-bottom: 12px; }

body.page-public .pl-final-cta { text-align: center; padding: clamp(40px, 6vw, 70px) 24px; background: var(--pl-grad-mesh); border: 1px solid var(--pl-line-strong); border-radius: var(--pl-r-xl); }
body.page-public .pl-final-mark { display: inline-grid; place-items: center; width: 52px; height: 52px; border: 2px solid var(--pl-cyan); border-radius: 50%; color: var(--pl-cyan); font-size: 22px; margin-bottom: 16px; }

/* ═══ Blog / article pages ═══════════════════════════════════════════ */
body.page-public .pl-blog-list { display: flex; flex-direction: column; gap: 16px; }
body.page-public .pl-blog-card {
  display: block; padding: 22px 24px; background: var(--pl-surface); border: 1px solid var(--pl-line);
  border-radius: var(--pl-r-lg); text-decoration: none; transition: transform var(--pl-tr), border-color var(--pl-tr), box-shadow var(--pl-tr);
}
body.page-public .pl-blog-card:hover { transform: translateY(-3px); border-color: var(--pl-pink); box-shadow: 0 12px 30px rgba(255,46,198,0.18); }
body.page-public .pl-blog-card-meta { font-size: 12.5px; color: var(--pl-text-muted); display: flex; gap: 8px; margin-bottom: 8px; }
body.page-public .pl-blog-card h2 { font-size: 20px; margin-bottom: 8px; color: var(--pl-text); }
body.page-public .pl-blog-card p { font-size: 14.5px; margin-bottom: 10px; }
body.page-public .pl-blog-card-cta { font-size: 13.5px; font-weight: 700; color: var(--pl-cyan); }

body.page-public .pl-article-body { font-size: 16.5px; line-height: 1.85; color: var(--pl-text-soft); }
body.page-public .pl-article-body h2 { font-size: clamp(22px, 3vw, 28px); color: var(--pl-text); margin: 40px 0 16px; }
body.page-public .pl-article-body h3 { font-size: 19px; color: var(--pl-text); margin: 28px 0 12px; }
body.page-public .pl-article-body p { margin-bottom: 18px; }
body.page-public .pl-article-body ul { margin: 0 0 18px; padding-inline-start: 22px; display: flex; flex-direction: column; gap: 8px; }
body.page-public .pl-article-body li { line-height: 1.7; }
body.page-public .pl-article-body a { color: var(--pl-cyan); text-decoration: underline; text-underline-offset: 3px; }
body.page-public .pl-article-body strong { color: var(--pl-text); }
body.page-public .pl-article-faq, body.page-public .pl-article-related { margin-top: 48px; }
body.page-public .pl-article-faq h2, body.page-public .pl-article-related h2 { font-size: 24px; margin-bottom: 20px; color: var(--pl-text); }

/* Sticky mobile CTA bar (WhatsApp) rendered by public_footer / floating widget uses existing floating_whatsapp partial styling, untouched (shared file lives outside .page-public scope concerns) */
