/*
 * PureConnect Pro v48.6 — Complete Frontend CSS
 * Covers ALL 146+ CSS classes used across all pages
 * Mobile-first: 320px base → 480px → 640px → 768px → 1024px → 1280px
 * Zero theme dependency — works with Elementor, Divi, Avada, OceanWP etc.
 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ══════════════════════════════════════════════
   RESET
══════════════════════════════════════════════ */
.pc-wrap,.pc-wrap *,.pc-wrap *::before,.pc-wrap *::after{
  box-sizing:border-box;margin:0;padding:0;
}
.pc-wrap{
  font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  font-size:15px;line-height:1.65;color:#1a2332;
  background:#f0f4f0;min-height:100vh;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

/* ══════════════════════════════════════════════
   TOPBAR  — fixed 60px bar, mobile + tablet
══════════════════════════════════════════════ */
.pc-topbar{
  position:fixed;top:0;left:0;right:0;height:60px;
  background:linear-gradient(135deg,#041912 0%,#0d2e24 100%);
  display:flex;align-items:center;padding:0 12px;gap:0;
  z-index:1000;box-shadow:0 2px 20px rgba(0,0,0,.35);
}

/* hamburger */
.pc-burger{
  background:none;border:none;cursor:pointer;
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  border-radius:10px;flex-shrink:0;
  -webkit-tap-highlight-color:transparent;transition:background .15s;
}
.pc-burger:active{background:rgba(255,255,255,.12)}

/* brand */
.pc-topbar-brand{
  flex:1;display:flex;align-items:center;gap:8px;
  text-decoration:none;overflow:hidden;padding:0 6px;min-width:0;
}
.pc-topbar-logo{font-size:22px;flex-shrink:0}
.pc-topbar-name{
  color:#fff;font-size:15px;font-weight:800;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;letter-spacing:-.3px;
}

/* right actions */
.pc-topbar-actions{
  display:flex;align-items:center;gap:6px;flex-shrink:0;padding-right:2px;
}

/* notification icon */
.pc-topbar-notif{
  position:relative;width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;color:#fff;text-decoration:none;border-radius:10px;
  -webkit-tap-highlight-color:transparent;flex-shrink:0;
}
.pc-topbar-badge{
  position:absolute;top:2px;right:2px;
  min-width:16px;height:16px;
  background:#ef4444;color:#fff;font-size:8px;font-weight:900;
  border-radius:999px;display:flex;align-items:center;justify-content:center;
  padding:0 3px;border:2px solid #0d2e24;line-height:1;
}

/* ══ LOGOUT BUTTON — Always Visible, Always Prominent ══ */
.pc-topbar-logout{
  display:flex;align-items:center;gap:5px;
  height:38px;padding:0 12px;
  background:#ef4444;
  border-radius:10px;
  color:#fff;font-weight:700;font-size:13px;
  text-decoration:none;white-space:nowrap;flex-shrink:0;
  -webkit-tap-highlight-color:transparent;
  transition:background .15s;
  box-shadow:0 2px 8px rgba(239,68,68,.4);
}
.pc-topbar-logout:active,.pc-topbar-logout:hover{background:#dc2626}
/* On very small screens — hide "Logout" text, keep icon only */
@media(max-width:360px){
  .pc-topbar-logout-text{display:none}
  .pc-topbar-logout{padding:0 9px;width:38px;justify-content:center}
  .pc-topbar-name{font-size:13px}
}

/* ── Desktop page-header logout (1024px+) ── */
.pc-head-logout{
  display:none;align-items:center;gap:6px;
  padding:8px 18px;background:#ef4444;
  border-radius:999px;color:#fff;text-decoration:none;
  font-size:13px;font-weight:700;white-space:nowrap;flex-shrink:0;
  box-shadow:0 2px 8px rgba(239,68,68,.3);transition:background .15s;
}
.pc-head-logout:hover{background:#dc2626}

/* ── Sidebar logout ── */
.pc-sb-logout{
  display:flex;align-items:center;gap:10px;
  padding:11px 14px;margin-top:4px;
  background:rgba(239,68,68,.12);border:1px solid rgba(239,68,68,.25);
  border-radius:10px;color:#fca5a5;text-decoration:none;
  font-size:13px;font-weight:700;transition:all .15s;
  -webkit-tap-highlight-color:transparent;min-height:44px;
}
.pc-sb-logout:active,.pc-sb-logout:hover{background:rgba(239,68,68,.22);color:#fff}

/* ══════════════════════════════════════════════
   OVERLAY
══════════════════════════════════════════════ */
.pc-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.6);
  z-index:999;opacity:0;pointer-events:none;
  transition:opacity .25s ease;backdrop-filter:blur(4px);
}
.pc-overlay.open{opacity:1;pointer-events:all}

/* ══════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════ */
.pc-sidebar{
  position:fixed;top:0;left:0;
  width:min(275px,88vw);height:100vh;
  background:linear-gradient(180deg,#041912 0%,#0b2b1d 50%,#0d2e24 100%);
  display:flex;flex-direction:column;z-index:1001;
  overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch;
  transform:translateX(-100%);
  transition:transform .32s cubic-bezier(.4,0,.2,1);
  scrollbar-width:thin;scrollbar-color:rgba(255,255,255,.08) transparent;
}
.pc-sidebar.open{transform:translateX(0);box-shadow:8px 0 48px rgba(0,0,0,.6)}
.pc-sidebar::-webkit-scrollbar{width:3px}
.pc-sidebar::-webkit-scrollbar-thumb{background:rgba(255,255,255,.08);border-radius:999px}

.pc-sb-header{
  display:flex;align-items:center;padding:18px 14px 14px;
  border-bottom:1px solid rgba(255,255,255,.07);flex-shrink:0;
}
.pc-sb-brand{display:flex;align-items:center;gap:10px;flex:1;min-width:0}
.pc-sb-brand-logo{font-size:26px;flex-shrink:0}
.pc-sb-brand-name{color:#fff;font-size:14px;font-weight:800;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;letter-spacing:-.2px}
.pc-sb-brand-ver{color:rgba(255,255,255,.3);font-size:10px;display:block;margin-top:1px}
.pc-sb-close{
  background:none;border:none;color:rgba(255,255,255,.35);cursor:pointer;
  padding:7px;border-radius:8px;flex-shrink:0;
  -webkit-tap-highlight-color:transparent;transition:all .15s;
}
.pc-sb-close:active{background:rgba(255,255,255,.1);color:#fff}

.pc-sb-profile{
  display:flex;align-items:center;gap:11px;
  padding:14px 16px;background:rgba(0,0,0,.2);
  border-bottom:1px solid rgba(255,255,255,.06);flex-shrink:0;
}
.pc-sb-avatar{
  width:48px;height:48px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:17px;font-weight:800;color:#fff;overflow:hidden;
  border:2.5px solid rgba(255,255,255,.2);
}
.pc-sb-avatar img{width:100%;height:100%;object-fit:cover}
.pc-sb-user{min-width:0;flex:1}
.pc-sb-name{color:#fff;font-size:13px;font-weight:800;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.pc-sb-rank{font-size:11px;font-weight:700;display:block;margin-top:1px}
.pc-sb-balance{color:rgba(255,255,255,.45);font-size:11px;display:block;margin-top:2px}

.pc-sb-stats{display:flex;border-bottom:1px solid rgba(255,255,255,.06);flex-shrink:0}
.pc-sb-stat{flex:1;text-align:center;padding:10px 4px;border-right:1px solid rgba(255,255,255,.06)}
.pc-sb-stat:last-child{border-right:none}
.pc-sb-stat strong{display:block;font-size:14px;font-weight:800;color:#4ade80;line-height:1.2}
.pc-sb-stat small{display:block;font-size:9px;color:rgba(255,255,255,.3);text-transform:uppercase;letter-spacing:.8px;margin-top:2px}

.pc-sb-nav{list-style:none;padding:8px 0;flex:1;margin:0}
.pc-sb-section{padding:12px 18px 4px;font-size:9px;font-weight:700;letter-spacing:1.6px;text-transform:uppercase;color:rgba(255,255,255,.22)}
.pc-sb-nav>li{margin:1px 7px}
.pc-sb-link{
  display:flex;align-items:center;gap:11px;padding:10px 12px;
  border-radius:10px;text-decoration:none;
  color:rgba(255,255,255,.58);font-size:13px;font-weight:500;
  transition:all .15s;-webkit-tap-highlight-color:transparent;min-height:44px;
}
.pc-sb-link:active{background:rgba(255,255,255,.08);color:#fff}
.pc-sb-link.is-active{background:linear-gradient(135deg,rgba(46,204,113,.22),rgba(46,204,113,.1));color:#4ade80;font-weight:700;border:1px solid rgba(46,204,113,.18)}
.pc-sb-link-icon{font-size:17px;width:22px;text-align:center;flex-shrink:0}
.pc-sb-link-text{flex:1}
.pc-sb-link-badge{background:#ef4444;color:#fff;font-size:9px;font-weight:800;min-width:18px;height:18px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;padding:0 4px}

.pc-sb-footer{padding:10px 7px 18px;border-top:1px solid rgba(255,255,255,.07);flex-shrink:0}
.pc-sb-support{display:flex;align-items:center;gap:9px;padding:10px 14px;border-radius:10px;color:rgba(255,255,255,.35);text-decoration:none;font-size:12px;font-weight:500;transition:all .15s;min-height:42px}
.pc-sb-support:active{background:rgba(255,255,255,.06);color:rgba(255,255,255,.65)}

/* ══════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.pc-main{margin-top:58px;min-height:calc(100vh - 60px)}
.pc-content{max-width:1200px;margin:0 auto;padding:16px 13px 80px}

/* ══════════════════════════════════════════════
   PAGE HEADER
══════════════════════════════════════════════ */
.pc-page-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:18px;flex-wrap:wrap}
.pc-greeting{font-size:12px;font-weight:600;color:#6b7280;margin-bottom:3px}
.pc-greeting strong{color:#374151}
.pc-page-title,.pc-ph-title{font-size:clamp(20px,5vw,28px);font-weight:900;color:#0d1f0d;letter-spacing:-.5px;margin:0 0 8px;line-height:1.2}
.pc-ph{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:18px;flex-wrap:wrap}
.pc-ph-sub{font-size:13px;color:#6b7280;margin:0}
.pc-head-chips{display:flex;align-items:center;gap:7px;flex-wrap:wrap}
.pc-chip-rank{display:inline-flex;align-items:center;gap:4px;font-size:11px;font-weight:800;padding:4px 12px;border-radius:100px}
.pc-chip-desig{background:#ecfdf5;color:#065f46;font-size:11px;font-weight:700;padding:3px 10px;border-radius:100px;border:1px solid #a7f3d0}
.pc-chip-id{color:#9ca3af;font-size:11px;font-weight:500}
.pc-head-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.pc-head-notif{position:relative;width:40px;height:40px;background:#fff;border:1px solid #e2e8e2;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;text-decoration:none;box-shadow:0 1px 4px rgba(0,0,0,.06)}
.pc-head-notif-pip{position:absolute;top:-2px;right:-2px;min-width:16px;height:16px;background:#ef4444;color:#fff;font-size:9px;font-weight:900;border-radius:999px;display:flex;align-items:center;justify-content:center;padding:0 3px;border:2px solid #f0f4f0}
.bn{color:#9ca3af;font-size:12px;font-weight:400}

/* ══════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════ */
.pc-ticker{background:linear-gradient(135deg,#1d4ed8,#3b82f6);border-radius:10px;padding:10px 14px;margin-bottom:14px;color:#fff;font-size:13px;gap:10px;align-items:center}
.pc-ticker-label{background:rgba(255,255,255,.2);padding:2px 10px;border-radius:100px;font-size:10px;font-weight:700;flex-shrink:0;white-space:nowrap}
.pc-ticker-text{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

/* ══════════════════════════════════════════════
   KPI CARDS
══════════════════════════════════════════════ */
.pc-kpi-grid{
  display:grid!important;grid-template-columns:repeat(2,1fr)!important;
  gap:10px!important;margin-bottom:12px!important;
}
.pc-kpi-card{
  border-radius:14px;padding:16px 14px 13px;color:#fff;
  box-shadow:0 4px 18px rgba(0,0,0,.14);
  position:relative;overflow:hidden;
}
.pc-kpi-glyph{position:absolute;top:-8px;right:-6px;font-size:56px;opacity:.1;line-height:1;pointer-events:none;user-select:none}
.pc-kpi-label{font-size:10px;font-weight:600;opacity:.72;text-transform:uppercase;letter-spacing:.6px;margin-bottom:5px}
.pc-kpi-value{font-size:clamp(16px,4.5vw,24px);font-weight:900;line-height:1.1;letter-spacing:-.3px;margin-bottom:3px;word-break:break-all}
.pc-kpi-hint{font-size:10px;opacity:.6;margin-bottom:10px}
.pc-kpi-link{display:inline-flex;align-items:center;background:rgba(255,255,255,.18);color:#fff;font-size:10px;font-weight:700;padding:4px 10px;border-radius:100px;text-decoration:none}
.pc-live.flashing{animation:pcFlash .6s ease}
@keyframes pcFlash{0%,100%{opacity:1}50%{opacity:.3}}

/* ══════════════════════════════════════════════
   PERFORMANCE STRIP
══════════════════════════════════════════════ */
.pc-perf-strip{
  display:flex;background:#fff;border:1px solid #e2e8e2;
  border-radius:12px;padding:12px 4px;margin-bottom:12px;
  box-shadow:0 1px 5px rgba(0,0,0,.05);overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.pc-perf-item{flex:1;text-align:center;padding:2px 6px;min-width:62px}
.pc-perf-icon{font-size:16px;margin-bottom:2px}
.pc-perf-num{font-size:clamp(13px,3vw,18px);font-weight:900;color:#0d2e24;line-height:1.2;display:block}
.pc-perf-label{font-size:9px;color:#9ca3af;font-weight:600;display:block;margin-top:1px;white-space:nowrap}
.pc-perf-divider{width:1px;background:#e8f0e8;align-self:stretch;flex-shrink:0;margin:4px 0}

/* ══════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════ */
.pc-card{background:#fff;border-radius:14px;border:1px solid #e2e8e2;box-shadow:0 1px 6px rgba(0,0,0,.06);margin-bottom:13px;overflow:hidden}
.pc-card-head,.pc-ch{display:flex;align-items:center;justify-content:space-between;padding:13px 16px;border-bottom:1px solid #f0f5f0;gap:10px;flex-wrap:wrap}
.pc-ch h3,.pc-card-head h3{font-size:13px;font-weight:800;color:#0d1f0d;margin:0;letter-spacing:-.1px}
.pc-card-body,.pc-cb{padding:16px}
.pc-cb.pc-cb-flush{padding:0}

/* Grids */
.pc-grid-2{display:grid;grid-template-columns:1fr;gap:0}

/* ══════════════════════════════════════════════
   QUICK ACTIONS
══════════════════════════════════════════════ */
.pc-qa-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;padding:13px}
.pc-qa-btn{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;
  padding:13px 6px;background:#f8faf8;border:1.5px solid #e2e8e2;
  border-radius:10px;text-decoration:none;color:#374151;
  -webkit-tap-highlight-color:transparent;transition:all .18s;
  min-height:72px;
}
.pc-qa-btn:active,.pc-qa-btn:hover{
  background:linear-gradient(135deg,var(--qa1,#064e3b),var(--qa2,#059669));
  color:#fff;border-color:transparent;transform:scale(.97);
}
.pc-qa-icon{font-size:20px;line-height:1}
.pc-qa-name{font-size:10px;font-weight:700;text-align:center;line-height:1.2}

/* ══════════════════════════════════════════════
   RANK CARD
══════════════════════════════════════════════ */
.pc-rank-layout{display:flex;align-items:center;gap:14px;margin-bottom:14px;flex-wrap:wrap}
.pc-donut-wrap{position:relative;width:120px;height:120px;flex-shrink:0}
.pc-donut-center{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;pointer-events:none}
.pc-donut-pct{font-size:20px;font-weight:900;color:#0d1f0d;line-height:1;letter-spacing:-.5px}
.pc-donut-sub{font-size:10px;color:#9ca3af;margin-top:2px}
.pc-rank-meta{flex:1;min-width:140px}
.pc-rank-current{font-size:16px;font-weight:900;margin-bottom:4px;letter-spacing:-.2px}
.pc-rank-next{font-size:12px;color:#6b7280;font-weight:600;margin-bottom:3px}
.pc-rank-need{font-size:12px;color:#374151;margin-bottom:10px}
.pc-rank-max{font-size:13px;font-weight:800;color:#d97706;margin-bottom:10px}
.pc-prog-bar-wrap{display:flex;align-items:center;gap:7px}
.pc-prog-bar-track{flex:1;height:7px;background:#e8f0e8;border-radius:999px;overflow:hidden}
.pc-prog-bar-fill{height:100%;border-radius:999px;transition:width 1.4s ease;min-width:4px}
.pc-prog-pct{font-size:11px;font-weight:800;color:#374151;flex-shrink:0;width:34px;text-align:right}

/* Roadmap */
.pc-roadmap{display:flex;align-items:flex-start;overflow-x:auto;padding:6px 0 4px;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.pc-roadmap::-webkit-scrollbar{display:none}
.pc-roadmap-node{display:flex;flex-direction:column;align-items:center;gap:3px;flex-shrink:0;min-width:46px;cursor:help}
.pc-roadmap-icon{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:15px;border:2px solid var(--c,#e2e8e2);background:#f8faf8;transition:transform .2s}
.pc-roadmap-node.pc-rm-done .pc-roadmap-icon{background:var(--b,#f8faf8)}
.pc-roadmap-node.pc-rm-active .pc-roadmap-icon{transform:scale(1.22);box-shadow:0 0 0 4px rgba(46,204,113,.2)}
.pc-roadmap-label{font-size:8.5px;font-weight:700;color:#aaa;text-align:center;max-width:44px;line-height:1.2}
.pc-roadmap-node.pc-rm-done .pc-roadmap-label,.pc-roadmap-node.pc-rm-active .pc-roadmap-label{color:var(--c,#374151)}
.pc-roadmap-you{font-size:7px;font-weight:900;color:#fff;background:#2ecc71;padding:1px 5px;border-radius:100px;letter-spacing:.3px}
.pc-roadmap-line{flex:1;height:2px;background:#e2e8e2;align-self:center;margin-bottom:24px;min-width:4px;transition:background .3s}
.pc-roadmap-line.pc-rm-done-line{background:#2ecc71}

/* Rank pill */
.pc-rank-pill{display:inline-flex;align-items:center;gap:4px;font-size:11px;font-weight:800;padding:3px 11px;border-radius:100px}
.pc-rank-badge{display:inline-flex;align-items:center;gap:4px;font-size:11px;font-weight:700;padding:3px 10px;border-radius:100px}

/* ══════════════════════════════════════════════
   REFERRAL CARD
══════════════════════════════════════════════ */
.pc-ref-code-box{background:linear-gradient(135deg,#041912,#0d2e24);border-radius:11px;padding:13px 16px;display:flex;align-items:center;justify-content:space-between;margin-bottom:11px}
.pc-ref-code-label{color:rgba(255,255,255,.45);font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.8px;margin-bottom:3px}
.pc-ref-code-value{color:#4ade80;font-family:'Courier New',monospace;font-size:clamp(16px,5vw,22px);font-weight:900;letter-spacing:3px}
.pc-ref-rank-badge{font-size:26px}
.pc-ref-link-row{display:flex;gap:7px;margin-bottom:9px}
.pc-ref-input{flex:1;padding:9px 11px;border:1.5px solid #e2e8e2;border-radius:8px;font-size:11px;font-family:monospace;background:#f8faf8;color:#374151;min-width:0}
.pc-copy-btn{padding:9px 13px;background:#0d2e24;color:#4ade80;border:none;border-radius:8px;font-size:11px;font-weight:700;cursor:pointer;white-space:nowrap;font-family:inherit;-webkit-tap-highlight-color:transparent}
.pc-share-row{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;margin-bottom:12px}
.pc-share-btn{padding:9px 4px;border-radius:8px;font-size:11px;font-weight:700;text-align:center;text-decoration:none;color:#fff;display:flex;align-items:center;justify-content:center;gap:3px;-webkit-tap-highlight-color:transparent}
.pc-share-wa{background:#25d366}.pc-share-tg{background:#0088cc}.pc-share-fb{background:#1877f2}

/* Commission rates */
.pc-comm-rates{border-top:1px solid #f0f5f0;padding-top:11px}
.pc-comm-rates-title{font-size:11px;font-weight:800;color:#0d1f0d;margin-bottom:8px}
.pc-comm-rate-row{display:flex;align-items:center;gap:6px;padding:4px 0;font-size:11px;border-bottom:1px solid #f8faf8}
.pc-comm-rate-row:last-child{border-bottom:none}
.pc-comm-lvl-tag{background:#0d2e24;color:#4ade80;padding:1px 7px;border-radius:4px;font-size:9px;font-weight:800;flex-shrink:0;min-width:24px;text-align:center}
.pc-comm-bar-bg{flex:1;height:4px;background:#e8f0e8;border-radius:999px;overflow:hidden}
.pc-comm-bar-fill{height:100%;background:linear-gradient(90deg,#059669,#4ade80);border-radius:999px}
.pc-comm-lvl-name{color:#9ca3af;font-size:10px;flex-shrink:0;width:44px}
.pc-comm-amount{font-weight:800;color:#059669;white-space:nowrap;font-size:11px}

/* ══════════════════════════════════════════════
   LIVE ACTIVITY
══════════════════════════════════════════════ */
.pc-live-dot{display:inline-block;width:7px;height:7px;background:#22c55e;border-radius:50%;animation:pcPulse 2s infinite;margin-left:7px;vertical-align:middle}
@keyframes pcPulse{0%{box-shadow:0 0 0 0 rgba(34,197,94,.5)}70%{box-shadow:0 0 0 8px rgba(34,197,94,0)}100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}}
.pc-live-label{font-size:8.5px;font-weight:900;color:#22c55e;letter-spacing:1.2px;text-transform:uppercase;vertical-align:middle;margin-left:3px}
.pc-feed-wrap{padding:8px 14px 6px;min-height:100px}
.pc-feed-item{display:flex;align-items:flex-start;gap:9px;padding:9px 0;border-bottom:1px solid #f0f5f0;animation:pcFadeIn .25s ease}
.pc-feed-item:last-child{border-bottom:none}
.pc-feed-ico{font-size:15px;flex-shrink:0;line-height:1.5}
.pc-feed-msg{display:block;font-size:13px;font-weight:500;color:#0d1f0d}
.pc-feed-time{display:block;font-size:10px;color:#9ca3af;margin-top:1px}
@keyframes pcFadeIn{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:none}}

/* ══════════════════════════════════════════════
   TRANSACTIONS
══════════════════════════════════════════════ */
.pc-txn-list{padding:0}
.pc-txn-item{display:flex;align-items:center;gap:10px;padding:11px 16px;border-bottom:1px solid #f0f5f0}
.pc-txn-item:last-child{border-bottom:none}
.pc-txn-icon{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:900;flex-shrink:0}
.pc-txn-info{flex:1;min-width:0}
.pc-txn-desc{font-size:12px;font-weight:600;color:#0d1f0d;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.pc-txn-date{font-size:10px;color:#9ca3af;margin-top:1px}
.pc-txn-amount{font-size:12px;font-weight:800;white-space:nowrap;flex-shrink:0}

/* ══════════════════════════════════════════════
   NETWORK STATS
══════════════════════════════════════════════ */
.pc-net-levels{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;margin-bottom:10px}
.pc-net-level-card{text-align:center;background:#f8faf8;border-radius:10px;padding:10px 4px;border:1px solid #e2e8e2}
.pc-net-level-num{font-size:18px;font-weight:900}
.pc-net-level-label{font-size:9px;color:#9ca3af;margin-top:2px;font-weight:700}
.pc-net-total{display:flex;align-items:center;justify-content:space-between;background:linear-gradient(135deg,#062117,#0d2e24);border-radius:10px;padding:12px 16px;color:#fff}
.pc-net-total span{font-size:12px;opacity:.7}
.pc-net-total strong{font-size:22px;font-weight:900;color:#4ade80}

/* ══════════════════════════════════════════════
   FORMS, INPUTS, BUTTONS
══════════════════════════════════════════════ */
.pc-f{margin-bottom:15px}
.pc-f label,.pc-form-label{display:block;font-size:13px;font-weight:700;color:#374151;margin-bottom:6px}
.pc-input{width:100%;padding:11px 13px;border:1.5px solid #dde9dd;border-radius:10px;font-size:14px;color:#1a2332;background:#fff;font-family:inherit;-webkit-appearance:none;appearance:none;transition:border-color .15s,box-shadow .15s}
.pc-input:focus{outline:none;border-color:#2ecc71;box-shadow:0 0 0 3px rgba(46,204,113,.1)}
.pc-input.ni{background:#f8faf8}
.pc-iw{position:relative;display:flex;align-items:center}
.pc-ii{position:absolute;left:12px;font-size:16px;pointer-events:none;z-index:1}
.pc-iw .pc-input{padding-left:38px}
.pc-si{position:absolute;right:12px;pointer-events:none;font-size:14px;color:#6b7280}
.pc-textarea{width:100%;padding:10px 13px;border:1.5px solid #dde9dd;border-radius:10px;font-size:14px;color:#1a2332;background:#fff;min-height:80px;resize:vertical;font-family:inherit}
.pc-textarea:focus{outline:none;border-color:#2ecc71}
.pc-help{font-size:11px;color:#9ca3af;margin-top:4px;display:block}
.pc-sl{font-size:11px;color:#9ca3af;margin-top:4px;display:block}

/* Buttons */
.pc-btn{display:inline-flex;align-items:center;justify-content:center;gap:7px;padding:11px 20px;border-radius:10px;font-size:13px;font-weight:700;cursor:pointer;border:none;font-family:inherit;text-decoration:none;white-space:nowrap;-webkit-tap-highlight-color:transparent;min-height:44px;transition:all .15s}
.pc-btn-primary,.pc-btn-green,.pc-btn-shine{background:linear-gradient(135deg,#059669,#2ecc71);color:#fff;box-shadow:0 2px 8px rgba(46,204,113,.25)}
.pc-btn-primary:hover,.pc-btn-green:hover,.pc-btn-shine:hover{box-shadow:0 4px 14px rgba(46,204,113,.35);transform:translateY(-1px)}
.pc-btn-blue{background:linear-gradient(135deg,#1e3a8a,#3b82f6);color:#fff}
.pc-btn-outline,.pc-btn-ghost{background:transparent;color:#6b7280;border:1.5px solid #dde9dd;padding:9px 16px}
.pc-btn-outline:hover,.pc-btn-ghost:hover{background:#f8faf8;color:#374151}
.pc-btn-wa{background:#25d366;color:#fff}
.pc-btn-block{width:100%}
.pc-btn-sm{padding:7px 14px;font-size:12px;min-height:36px}
.pc-btn-xs{padding:5px 10px;font-size:11px;min-height:30px;border-radius:7px}
.pc-btn-lg{padding:13px 28px;font-size:15px;min-height:50px}
.pc-btn:disabled{opacity:.5;cursor:not-allowed}

/* Alerts */
.pc-alert{display:flex;align-items:flex-start;gap:10px;padding:12px 14px;border-radius:10px;font-size:13px;margin-bottom:14px;font-weight:500}
.pc-alert-success,.pc-flash-success{background:#f0fdf4;border:1px solid #a7f3d0;color:#065f46;padding:12px 14px;border-radius:10px;margin-bottom:14px;font-size:13px;font-weight:500}
.pc-alert-error,.pc-flash-error{background:#fef2f2;border:1px solid #fca5a5;color:#dc2626;padding:12px 14px;border-radius:10px;margin-bottom:14px;font-size:13px;font-weight:500}
.pc-alert-warning{background:#fffbeb;border:1px solid #fde68a;color:#92400e}
.pc-alert-info{background:#eff6ff;border:1px solid #bfdbfe;color:#1e40af}

/* ══════════════════════════════════════════════
   TABLES
══════════════════════════════════════════════ */
.pc-tw{overflow-x:auto;-webkit-overflow-scrolling:touch}
.pc-table{width:100%;border-collapse:collapse;font-size:13px;min-width:380px}
.pc-table thead th{background:linear-gradient(135deg,#062117,#0d2e24);color:#fff;padding:11px 13px;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.4px;text-align:left;white-space:nowrap}
.pc-table tbody td{padding:11px 13px;border-bottom:1px solid #f0f5f0;color:#374151;font-size:13px}
.pc-table tbody tr:last-child td{border-bottom:none}
.pc-table tbody tr:hover td{background:#f8faf8}
.pc-cr{color:#16a34a!important;font-weight:700}
.pc-dr{color:#dc2626!important;font-weight:700}

/* ══════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════ */
.pc-badge{display:inline-flex;align-items:center;padding:2px 8px;border-radius:999px;font-size:10px;font-weight:700;white-space:nowrap}
.bg{background:#dcfce7;color:#15803d}.bb{background:#dbeafe;color:#1e40af}
.br{background:#fee2e2;color:#dc2626}.bp{background:#ede9fe;color:#6d28d9}
.bt{background:#ccfbf1;color:#0f766e}.bo{background:#fef3c7;color:#92400e}.bk{background:#f3f4f6;color:#374151}
.pc-pill{display:inline-flex;align-items:center;padding:3px 10px;border-radius:100px;font-size:11px;font-weight:700}
.pc-lv-badge{display:inline-block;background:#0d2e24;color:#4ade80;padding:2px 8px;border-radius:5px;font-size:9px;font-weight:800;text-align:center}

/* ══════════════════════════════════════════════
   PAGE-SPECIFIC: WALLET
══════════════════════════════════════════════ */
.pc-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:14px}
.pc-stat{background:#fff;border:1px solid #e2e8e2;border-radius:12px;padding:14px;box-shadow:0 1px 4px rgba(0,0,0,.05);position:relative;overflow:hidden}
.pc-si{font-size:22px;margin-bottom:4px}
.pc-sv{font-size:clamp(18px,4vw,24px);font-weight:900;color:#0d1f0d;line-height:1.1;margin-bottom:2px;display:block}
.pc-sl{font-size:11px;color:#9ca3af;font-weight:600;display:block}
.pc-stat.sg .pc-sv{color:#059669}.pc-stat.sb .pc-sv{color:#3b82f6}.pc-stat.so .pc-sv{color:#d97706}.pc-stat.sp .pc-sv{color:#8b5cf6}
.pc-wal-hero{background:linear-gradient(135deg,#062117,#0d2e24);border-radius:14px;padding:24px 20px;text-align:center;margin-bottom:16px;color:#fff}
.pc-wal-bal{font-size:clamp(32px,8vw,52px);font-weight:900;color:#4ade80;letter-spacing:-1px;line-height:1;margin:6px 0 3px;display:block}
.pc-wal-lbl{font-size:12px;opacity:.65}
.pc-wal-meta{font-size:13px;opacity:.7;margin-top:6px}
.pc-wal-amt{font-size:clamp(18px,4vw,24px);font-weight:900}

/* Pager */
.pc-pager{display:flex;align-items:center;justify-content:center;gap:6px;padding:16px;flex-wrap:wrap}
.pc-pg{padding:7px 13px;border:1.5px solid #e2e8e2;border-radius:8px;font-size:12px;font-weight:700;cursor:pointer;background:#fff;color:#374151;font-family:inherit;-webkit-tap-highlight-color:transparent;min-height:38px}
.pc-pg.is-active{background:#0d2e24;color:#4ade80;border-color:#0d2e24}

/* Tabs */
.pc-tabs,.pc-view-tabs{display:flex;border-bottom:1px solid #e2e8e2;gap:0}
.pc-tab,.pc-vtab{padding:11px 16px;font-size:13px;font-weight:600;color:#9ca3af;cursor:pointer;border-bottom:2px solid transparent;transition:all .15s;-webkit-tap-highlight-color:transparent;white-space:nowrap}
.pc-tab.on,.pc-tab.is-active,.pc-vtab.on,.pc-vtab.is-active{color:#0d2e24;border-bottom-color:#2ecc71;font-weight:800}
.pc-vtab-count{background:#f0f4f0;color:#6b7280;font-size:10px;font-weight:700;padding:1px 5px;border-radius:100px;margin-left:4px}

/* ══════════════════════════════════════════════
   PAGE-SPECIFIC: TASKS
══════════════════════════════════════════════ */
.pc-tasks{display:flex;flex-direction:column;gap:10px}
.pc-task{background:#fff;border:1px solid #e2e8e2;border-radius:12px;padding:16px;box-shadow:0 1px 5px rgba(0,0,0,.06)}
.pc-task-ico{font-size:28px;margin-bottom:8px;display:block}
.pc-task-title{font-size:14px;font-weight:800;color:#0d1f0d;margin-bottom:5px}
.pc-task-desc{font-size:13px;color:#6b7280;margin-bottom:10px;line-height:1.5}
.pc-task-rew{display:inline-flex;align-items:center;gap:5px;background:#f0fdf4;color:#059669;font-size:12px;font-weight:700;padding:4px 10px;border-radius:100px;border:1px solid #a7f3d0;margin-bottom:10px}
.pc-task-form{display:flex;flex-direction:column;gap:8px}

/* ══════════════════════════════════════════════
   PAGE-SPECIFIC: MY TEAM
══════════════════════════════════════════════ */
.pc-team-cards{display:flex;flex-direction:column;gap:0}
.pc-team-card{background:#fff;border-radius:0;border-bottom:1px solid #f0f5f0}
.pc-tc-header{display:flex;align-items:center;gap:12px;padding:14px 16px}
.pc-tc-av{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:15px;font-weight:800;color:#fff;flex-shrink:0;overflow:hidden}
.pc-tc-av img{width:100%;height:100%;object-fit:cover}
.pc-tc-info{flex:1;min-width:0}
.pc-tc-name{font-size:14px;font-weight:800;color:#0d1f0d;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.pc-tc-rank{font-size:12px;font-weight:600;margin-top:1px}
.pc-tc-email,.pc-tc-code,.pc-tc-joined{font-size:11px;color:#9ca3af;margin-top:1px}
.pc-tc-stats{display:flex;gap:14px;flex-shrink:0}
.pc-tc-stat{text-align:center}
.pc-tc-stat-val{display:block;font-size:15px;font-weight:900;color:#0d1f0d}
.pc-tc-stat-lbl{display:block;font-size:9px;color:#9ca3af;text-transform:uppercase;font-weight:600;margin-top:1px}
.pc-tc-active-dot{display:inline-block;width:7px;height:7px;background:#22c55e;border-radius:50%;margin-left:5px;vertical-align:middle}
.pc-tc-sub-avatars{display:flex;gap:-4px}
.pc-tc-subteam,.pc-tc-subteam-label{font-size:12px;color:#6b7280;margin-top:4px}
.pc-level-grid{display:flex;flex-direction:column;gap:10px}
.pc-lv-card{background:#fff;border:1px solid #e2e8e2;border-radius:12px;padding:14px 16px;box-shadow:0 1px 4px rgba(0,0,0,.05)}
.pc-lv-label{font-size:11px;font-weight:700;color:#6b7280;text-transform:uppercase;letter-spacing:.4px;margin-bottom:6px}
.pc-lv-count{font-size:28px;font-weight:900;color:#0d2e24;margin-bottom:4px;display:block}
.pc-lv-earn{font-size:12px;color:#059669;font-weight:700}
.pc-glass-node,.pc-gn-card{background:#fff;border:1px solid #e2e8e2;border-radius:12px;padding:14px;margin-bottom:8px}
.pc-gn-av{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:800;color:#fff;flex-shrink:0;overflow:hidden}
.pc-gn-name{font-size:13px;font-weight:800;color:#0d1f0d}
.pc-gn-rank{font-size:11px;font-weight:600;margin-top:1px}
.pc-gn-meta{font-size:11px;color:#9ca3af;margin-top:1px}
.pc-gn-badge,.pc-gn-info{display:flex;align-items:center;gap:8px}
.pc-tree-wrap,.pc-tree-level,.pc-tree-children{padding:4px 0}
.pc-tree-info-bar{background:#f8faf8;border-radius:8px;padding:10px 12px;font-size:12px;color:#6b7280;margin-bottom:10px}
.pc-tree-glass{background:#fff;border-radius:10px;border:1px solid #e2e8e2;padding:12px;margin-bottom:6px}
.pc-tree-toggle{background:none;border:1px solid #dde9dd;border-radius:7px;padding:5px 12px;font-size:11px;font-weight:700;color:#6b7280;cursor:pointer;font-family:inherit}
.pc-sub-av{width:28px;height:28px;border-radius:50%;border:2px solid #fff;display:inline-flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;color:#fff;overflow:hidden;margin-left:-8px}
.pc-sub-more{font-size:11px;color:#9ca3af;margin-left:6px}
.pc-search-row{display:flex;gap:8px;margin-bottom:14px}

/* ══════════════════════════════════════════════
   PAGE-SPECIFIC: WITHDRAWAL
══════════════════════════════════════════════ */
.pc-bal-hi{display:flex;justify-content:space-between;align-items:center;background:linear-gradient(135deg,#062117,#0d2e24);padding:14px 16px;border-radius:12px;margin-bottom:16px;flex-wrap:wrap;gap:8px}
.pc-bal-hi span:first-child{color:rgba(255,255,255,.65);font-size:13px;font-weight:600}
.pc-bal-val{font-size:clamp(20px,5vw,28px);font-weight:900;color:#4ade80}
.pc-wd-row{display:flex;align-items:center;gap:11px;padding:12px 16px;border-bottom:1px solid #f0f5f0}
.pc-wd-row:last-child{border-bottom:none}
.pc-wm-item{display:flex;align-items:center;gap:8px}

/* ══════════════════════════════════════════════
   PAGE-SPECIFIC: NOTIFICATIONS
══════════════════════════════════════════════ */
.pc-notif-list{display:flex;flex-direction:column}
.pc-notif-item{display:flex;align-items:flex-start;gap:11px;padding:13px 16px;border-bottom:1px solid #f0f5f0;transition:background .12s}
.pc-notif-item:last-child{border-bottom:none}
.pc-notif-item:hover{background:#f8faf8}
.pc-notif-item.pc-unread{background:#f0fdf4}
.pc-notif-icon{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;background:#f0f5f0}
.pc-notif-dot{width:8px;height:8px;background:#2ecc71;border-radius:50%;flex-shrink:0;margin-top:6px}
.pc-notif-body{flex:1;min-width:0}
.pc-notif-title{font-size:13px;font-weight:700;color:#0d1f0d;margin-bottom:2px}
.pc-notif-msg{font-size:12px;color:#6b7280;line-height:1.4}
.pc-notif-time{font-size:10px;color:#9ca3af;margin-top:3px;display:block}
.pc-notif-empty{text-align:center;padding:40px 20px;color:#9ca3af}

/* ══════════════════════════════════════════════
   PAGE-SPECIFIC: LEADERBOARD
══════════════════════════════════════════════ */
.pc-lb-row{display:flex;align-items:center;gap:12px;padding:14px 16px;background:#fff;border-radius:13px;border:1px solid #e2e8e2;box-shadow:0 1px 5px rgba(0,0,0,.06);margin-bottom:8px;transition:box-shadow .15s}
.pc-lb-row:hover{box-shadow:0 4px 16px rgba(0,0,0,.1)}
.pc-lb-row.pc-lb-me{background:linear-gradient(135deg,#f0fdf4,#dcfce7);border-color:#86efac}
.pc-lb-pos{font-size:20px;min-width:36px;text-align:center;flex-shrink:0}
.pc-lb-av{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:15px;font-weight:800;color:#fff;overflow:hidden;flex-shrink:0}
.pc-lb-av img{width:100%;height:100%;object-fit:cover}
.pc-lb-info{flex:1;min-width:0}
.pc-lb-name{font-size:14px;font-weight:800;color:#0d1f0d;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.pc-lb-rank{font-size:12px;font-weight:600;margin-top:2px}
.pc-lb-you{background:#2ecc71;color:#fff;font-size:9px;font-weight:800;padding:1px 6px;border-radius:100px;margin-left:5px;vertical-align:middle}
.pc-lb-stats{display:flex;gap:14px;flex-shrink:0}
.pc-lb-stat{text-align:center}
.pc-lb-stat-v{display:block;font-size:15px;font-weight:900;color:#0d1f0d}
.pc-lb-stat-l{display:block;font-size:9px;color:#9ca3af;text-transform:uppercase;letter-spacing:.5px;font-weight:600;margin-top:1px}
.pc-lb-list{display:flex;flex-direction:column}
.pc-lb-head{margin-bottom:18px}
.pc-lb-title{font-size:clamp(20px,4vw,26px);font-weight:900;color:#0d1f0d;letter-spacing:-.5px;margin:0 0 4px}
.pc-lb-sub{font-size:13px;color:#6b7280;margin:0}

/* ══════════════════════════════════════════════
   PAGE-SPECIFIC: PROFILE
══════════════════════════════════════════════ */
.pc-photo-upload{display:flex;flex-direction:column;align-items:center;gap:12px;padding:20px;border:2px dashed #dde9dd;border-radius:12px;cursor:pointer;background:#f8faf8;text-align:center;transition:all .15s}
.pc-photo-upload:hover{border-color:#2ecc71;background:#f0fdf4}
.pc-photo-icon{font-size:40px;display:block}
.pc-photo-label{font-size:14px;font-weight:700;color:#374151}
.pc-photo-sub{font-size:12px;color:#9ca3af}

/* ══════════════════════════════════════════════
   PAGE-SPECIFIC: SUPPORT
══════════════════════════════════════════════ */
.pc-support-cta{display:flex;flex-direction:column;gap:8px}
.pc-cta-btn{display:flex;align-items:center;gap:12px;padding:14px 16px;border-radius:12px;text-decoration:none;font-weight:700;font-size:14px;transition:all .15s;-webkit-tap-highlight-color:transparent}
.pc-cta-wa{background:linear-gradient(135deg,#128c7e,#25d366);color:#fff}
.pc-cta-call{background:linear-gradient(135deg,#1e3a8a,#3b82f6);color:#fff}
.pc-cta-email{background:#fff;border:1.5px solid #e2e8e2;color:#374151}
.pc-cta-ico{font-size:22px;flex-shrink:0}
.pc-ticket-row{display:flex;align-items:flex-start;gap:12px;padding:14px 0;border-bottom:1px solid #f0f5f0}
.pc-ticket-row:last-child{border-bottom:none}
.pc-ticket-num{font-size:11px;color:#9ca3af;font-weight:700}
.pc-ticket-main,.pc-ticket-preview{flex:1;min-width:0}
.pc-ticket-sub{font-size:14px;font-weight:700;color:#0d1f0d;margin-bottom:4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.pc-ticket-preview{font-size:12px;color:#6b7280;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.pc-ticket-meta{font-size:11px;color:#9ca3af}
.pc-ticket-right{text-align:right;flex-shrink:0}
.pc-ticket-date{font-size:11px;color:#9ca3af;display:block}
.pc-back-link{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:700;color:#059669;text-decoration:none;margin-bottom:16px}
.pc-msg-bubble{background:#f0fdf4;border-radius:12px 12px 12px 3px;padding:11px 14px;max-width:82%;margin-bottom:8px}
.pc-msg-bubble.pc-msg-out{background:#0d2e24;color:#fff;border-radius:12px 12px 3px 12px;align-self:flex-end}
.pc-msg-text{font-size:13px;line-height:1.5}
.pc-msg-time{font-size:10px;opacity:.6;margin-top:3px;display:block}
.pc-msg-from{font-size:10px;font-weight:700;color:#059669;margin-bottom:2px;display:block}
.pc-msg-att{background:rgba(255,255,255,.1);border-radius:6px;padding:8px 10px;margin-top:6px;font-size:12px}

/* ══════════════════════════════════════════════
   MISC
══════════════════════════════════════════════ */
.pc-empty-state,.pc-empty{text-align:center;padding:28px 16px;color:#9ca3af}
.pc-ei{display:block;font-size:36px;margin-bottom:8px}
.pc-empty p,.pc-empty-state p{font-size:13px;margin:0;line-height:1.5}
.pc-notif-empty{text-align:center;padding:36px 20px;color:#9ca3af}
.pc-link{font-size:12px;font-weight:700;color:#059669;text-decoration:none}
.pc-link:hover{text-decoration:underline}
.pc-back-link:hover{text-decoration:underline}
.pc-login-gate{text-align:center;padding:60px 20px;background:#fff;border-radius:14px}
.pc-login-gate p{font-size:14px;color:#6b7280;margin:0 0 18px}
.pc-loading-state{display:flex;align-items:center;justify-content:center;gap:8px;padding:24px;color:#9ca3af;font-size:13px}
.pc-spinner{display:inline-block;width:16px;height:16px;border:2.5px solid #e2e8e2;border-top-color:#2ecc71;border-radius:50%;animation:pcSpin .7s linear infinite;flex-shrink:0}
@keyframes pcSpin{to{transform:rotate(360deg)}}
.pc-sep{height:1px;background:#f0f5f0;margin:14px 0}
.pc-info-box{background:#f8faf8;border:1px solid #e2e8e2;border-radius:10px;padding:13px;font-size:13px;color:#374151}
.pc-ref-banner{background:linear-gradient(135deg,#062117,#0d2e24);border-radius:13px;padding:16px;color:#fff;margin-bottom:14px;display:flex;align-items:center;gap:14px}
.pc-ref-banner-icon{font-size:28px;flex-shrink:0}
.pc-ref-banner-title{font-size:12px;opacity:.65;margin-bottom:2px}
.pc-ref-banner-code{color:#4ade80;font-size:20px;font-weight:900;font-family:monospace;letter-spacing:3px}
.pc-ref-banner-text{font-size:12px;opacity:.65;margin-top:3px}

/* Toast */
#pc-toast{position:fixed;bottom:72px;left:50%;transform:translateX(-50%) translateY(16px);padding:10px 22px;border-radius:999px;font-size:13px;font-weight:700;z-index:9999;opacity:0;transition:all .28s ease;white-space:nowrap;box-shadow:0 8px 28px rgba(0,0,0,.2);pointer-events:none;font-family:inherit}
#pc-toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
.pc-toast-success{background:#15803d;color:#fff}
.pc-toast-error{background:#ef4444;color:#fff}
.pc-toast-info{background:#0d2e24;color:#fff}

/* WhatsApp FAB */
.pc-wa-fab{position:fixed;bottom:20px;right:16px;width:52px;height:52px;background:#25d366;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;box-shadow:0 4px 16px rgba(37,211,102,.4);z-index:998}

/* ══════════════════════════════════════════════
   RESPONSIVE — Mobile First
══════════════════════════════════════════════ */

/* 480px */
@media(min-width:480px){
  .pc-content{padding:18px 16px 80px}
  .pc-share-row{display:flex}
  .pc-share-btn{flex:1}
  .pc-kpi-value{font-size:22px}
}

/* 600px — 4-col KPI */
@media(min-width:600px){
  .pc-kpi-grid{grid-template-columns:repeat(4,1fr)!important;gap:12px}
}

/* 640px — 2-col layout */
@media(min-width:640px){
  .pc-grid-2{grid-template-columns:1fr 1fr!important;gap:14px!important;align-items:start}
  .pc-content{padding:22px 20px 80px}
  .pc-stats{grid-template-columns:repeat(4,1fr)}
  .pc-team-cards{display:grid;grid-template-columns:1fr 1fr}
}

/* 768px — tablet */
@media(min-width:768px){
  .pc-content{padding:26px 24px 80px}
  .pc-grid-2{gap:16px!important}
  .pc-kpi-value{font-size:24px!important}
  .pc-team-cards{grid-template-columns:1fr 1fr 1fr}
}

/* 1024px — DESKTOP */
@media(min-width:1024px){
  /* Hide mobile topbar */
  .pc-topbar{display:none!important}
  .pc-overlay{display:none!important}

  /* Sidebar always open */
  .pc-sidebar{position:fixed!important;transform:translateX(0)!important;box-shadow:none!important;border-right:1px solid rgba(255,255,255,.07)!important}
  .pc-sb-close{display:none!important}

  /* Content shifts */
  .pc-main{margin-top:0!important;margin-left:275px!important}
  .pc-content{padding:28px 32px 80px!important;max-width:calc(1200px + 275px)!important}

  /* Show desktop logout */
  .pc-head-logout{display:inline-flex!important}

  /* Layout */
  .pc-kpi-grid{grid-template-columns:repeat(4,1fr)!important;gap:14px!important}
  .pc-grid-2{grid-template-columns:1.1fr 1fr!important;gap:18px!important}
  .pc-kpi-value{font-size:26px!important}
  .pc-qa-grid{grid-template-columns:repeat(4,1fr)!important}
}

/* 1280px */
@media(min-width:1280px){
  .pc-content{padding:32px 40px 88px!important}
}

/* Under 360px — tiny phones */
@media(max-width:359px){
  .pc-kpi-grid{grid-template-columns:1fr 1fr!important;gap:8px!important}
  .pc-kpi-card{padding:13px 10px 10px!important}
  .pc-kpi-value{font-size:15px!important}
  .pc-content{padding:12px 10px 72px!important}
  .pc-qa-grid{gap:6px!important}
  .pc-qa-btn{padding:10px 3px!important;min-height:62px!important}
  .pc-qa-icon{font-size:18px!important}
  .pc-qa-name{font-size:9px!important}
  .pc-topbar{padding:0 8px!important;gap:4px!important}
  .pc-topbar-name{font-size:13px!important}
  .pc-topbar-notif{width:36px!important}
}

/* Touch devices — no hover transforms */
@media(hover:none){
  .pc-kpi-card{transition:none!important}
  .pc-qa-btn:hover{transform:none!important}
  .pc-lb-row:hover{box-shadow:0 1px 5px rgba(0,0,0,.06)!important}
}

/* Reduce motion */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
}
