/* Pixelburgh Core UI: terminal HUD + safe shortcode fallbacks */

/* =========================
   PB CORE — DESIGN TOKENS
   Single source of UI variables for all modules
========================= */
:root{
  --pb-fg: rgba(230,255,245,.92);
  --pb-dim: rgba(230,255,245,.76);
  --pb-faint: rgba(230,255,245,.55);
  --pb-line: rgba(0,255,200,.22);
  --pb-line2: rgba(0,255,200,.14);
  --pb-shadow: rgba(0,0,0,.70);
  --pb-panel: rgba(0,0,0,.65);
  --pb-panel2: rgba(0,0,0,.72);
  --pb-r: 18px;
}

/*
  HUD is rendered via wp_body_open and uses position: sticky,
  so it participates in layout and does NOT overlay/disable theme headers/menus.
  (No global body padding needed.)
*/


/* =========================
   HUD (topbar, header-code safe)
   - Renders via wp_body_open (fallback wp_footer)
   - position:sticky so it participates in layout
   - No theme header/menu CSS overrides
========================= */
.pb-hud{
  position: fixed !important;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  width: 100%;
  color: rgba(230, 255, 246, 0.92);
  background: rgba(6, 8, 10, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(120, 255, 210, 0.25);
  border-radius: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
}

body.admin-bar .pb-hud{ top:auto; bottom:0; }
@media (max-width: 782px){ body.admin-bar .pb-hud{ top:auto; bottom:0; } }
/* IMPORTANT:
   The HUD is meant to FLOAT above the theme header/menu without touching
   header/menu code (maximum theme compatibility). So we DO NOT push the page
   down here—avoids the "gap on top" issue.
*/
body.pb-hud-on{ padding-top: 0 !important; padding-bottom: 50px !important; }


.pb-hud__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Username file-tab label (filing cabinet feel) */
.pb-hud__filetab{
  position: absolute;
  top: -12px;
  left: 14px;
  background: rgba(6, 8, 10, 0.92);
  border: 1px solid rgba(120, 255, 210, 0.32);
  border-bottom: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 5px 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
}
.pb-hud__filetabLabel{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(230, 255, 246, 0.92);
  white-space: nowrap;
  max-width: 42vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pb-hud__left,.pb-hud__right{ display:flex; align-items:center; gap:12px; }
.pb-hud__mid{ flex: 1 1 auto; min-width: 180px; }

.pb-hud__brand{
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.9;
}

.pb-hud__stat{ display:flex; flex-direction:column; line-height:1.05; }
.pb-hud__k{ font-size: 10px; opacity: 0.75; letter-spacing: 0.12em; }
.pb-hud__v{ font-size: 12px; font-weight: 700; }

.pb-hud__bar{
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.pb-hud__barFill{
  height: 100%;
  background: linear-gradient(90deg, rgba(120,255,210,0.95), rgba(80,190,255,0.95));
  width: 0;
}
.pb-hud__barText{
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.8;
  text-align: center;
}

.pb-hud__btn{
  border: 1px solid rgba(120,255,210,0.35);
  background: rgba(10, 18, 16, 0.55);
  color: inherit;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.pb-hud__btn[disabled]{ opacity: 0.55; cursor: not-allowed; }
.pb-hud__checkin{ margin: 0; }

@media (max-width: 860px){
  .pb-hud__mid{ display:none; }
}

/* =========================
   SHORTCODE FALLBACKS
========================= */
.pb-shortcode{
  padding: 10px 12px;
  border-radius: 12px;
  margin: 10px 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: rgba(0,0,0,0.35);
  border: 1px dashed rgba(255,255,255,0.25);
}
.pb-shortcode--missing{ opacity: 0.8; }
.pb-shortcode--error{ border-color: rgba(255, 120, 140, 0.45); }


/* =========================
   AUTH (Login / Register)
========================= */
.pb-auth-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  padding:28px 14px;
}
.pb-auth-card{
  width:100%;
  max-width:520px;
  border-radius:18px;
  background:rgba(0,0,0,.22);
  box-shadow: inset 0 0 0 1px rgba(28,246,255,.14), 0 12px 36px rgba(0,0,0,.35);
  padding:18px;
  backdrop-filter: blur(12px);
}
.pb-auth-title{
  font-weight:900;
  letter-spacing:.10em;
  margin-bottom:10px;
}
.pb-auth-err{
  margin:10px 0;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,50,80,.12);
  box-shadow: inset 0 0 0 1px rgba(255,50,80,.28);
}
.pb-auth-label{
  display:block;
  font-size:12px;
  opacity:.85;
  margin-top:10px;
  margin-bottom:6px;
  letter-spacing:.08em;
  font-weight:800;
}
.pb-auth-input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:none;
  outline:none;
  background:rgba(0,0,0,.26);
  box-shadow: inset 0 0 0 1px rgba(28,246,255,.14);
  color:inherit;
}
.pb-auth-remember{
  display:flex;
  align-items:center;
  gap:10px;
  margin:12px 0 6px;
  opacity:.9;
}
.pb-auth-btn{
  width:100%;
  margin-top:10px;
  padding:12px 14px;
  border-radius:14px;
  border:none;
  cursor:pointer;
  font-weight:900;
  letter-spacing:.10em;
  background:rgba(28,246,255,.16);
  box-shadow: inset 0 0 0 1px rgba(28,246,255,.22);
}
.pb-auth-links{
  margin-top:12px;
  display:flex;
  justify-content:center;
  opacity:.85;
}
.pb-auth-links a{ text-decoration:none; }

/* === PB UI Standard (cards/buttons) === */
.pb-layout-stack{display:flex;flex-direction:column;gap:18px;}
.pb-card{border-radius:16px;padding:16px;background:rgba(0,0,0,.18);box-shadow:inset 0 0 0 1px rgba(28,246,255,.12),0 8px 30px rgba(0,0,0,.35);backdrop-filter:blur(8px);} 
.pb-card-title{font-weight:900;letter-spacing:.08em;margin-bottom:12px;text-transform:uppercase;}
.pb-btn{display:inline-block;padding:10px 14px;border-radius:12px;font-weight:800;letter-spacing:.06em;background:rgba(28,246,255,.08);box-shadow:inset 0 0 0 1px rgba(28,246,255,.25);transition:.2s ease;}
.pb-btn:hover{box-shadow:inset 0 0 0 1px rgba(28,246,255,.55);} 


/* No theme header/menu overrides by design.
   The HUD is floating and should never reposition the menu. */

/* =========================================================
   PIXELBURGH — TERMINAL PANEL UI (Marketplace Reference)
   Used across Economy, Auth, Wiki, Archive blocks.
========================================================= */

:root{
  --pb-fg: rgba(230,255,245,.92);
  --pb-dim: rgba(230,255,245,.76);
  --pb-faint: rgba(230,255,245,.55);
  --pb-line: rgba(0,255,200,.22);
  --pb-line2: rgba(0,170,255,.16);
  --pb-shadow: rgba(0,0,0,.70);
  --pb-r: 18px;
  --pb-panel: rgba(0,0,0,.65);
  --pb-panel2: rgba(0,0,0,.72);
}

.pb-panel{
  position: relative;
  border-radius: var(--pb-r);
  border: 1px solid var(--pb-line);
  background: var(--pb-panel);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.35) inset,
    0 22px 70px var(--pb-shadow),
    0 0 40px rgba(0,255,200,.05);
}
.pb-panel::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(circle at 20% 25%, rgba(0,255,200,.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,170,255,.12), transparent 55%);
  opacity:.6;
  pointer-events:none;
}
.pb-panel::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 14px 14px, rgba(0,255,200,.45) 2px, transparent 4px),
    radial-gradient(circle at calc(100% - 14px) 14px, rgba(0,255,200,.45) 2px, transparent 4px),
    radial-gradient(circle at 14px calc(100% - 14px), rgba(0,255,200,.45) 2px, transparent 4px),
    radial-gradient(circle at calc(100% - 14px) calc(100% - 14px), rgba(0,255,200,.45) 2px, transparent 4px);
  opacity:.8;
  pointer-events:none;
}

/* Auth cards adopt panel chrome */
.pb-auth{ background: var(--pb-panel) !important; border: 1px solid var(--pb-line) !important; }
.pb-auth__title{ letter-spacing:.14em; }
.pb-auth__sub{ color: var(--pb-dim); }

/* Economy wrappers */
.pb-shop{ color: var(--pb-fg); font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Courier New",monospace; letter-spacing:.02em; }
.pb-shop__shell{ max-width: 1200px; margin: 0 auto; position: relative; }
.pb-strip{
  margin: 12px 0 14px;
  padding: 12px 14px;
  border-radius: var(--pb-r);
  border: 1px solid rgba(0,255,200,.18);
  background: rgba(0,0,0,.45);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--pb-dim);
}
.pb-strip strong{ color: var(--pb-fg); }

.pb-grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; }
@media (max-width: 980px){ .pb-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px){ .pb-grid{ grid-template-columns: 1fr; } }

.pb-card{
  border-radius: var(--pb-r);
  border: 1px solid var(--pb-line);
  background: var(--pb-panel2);
  padding: 14px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset;
}
.pb-card__name{ font-weight: 900; letter-spacing:.12em; text-transform:uppercase; margin-bottom:8px; }
.pb-card__desc{ color: var(--pb-dim); font-size: 12px; line-height:1.4; margin-bottom: 12px; }
.pb-card__foot{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.pb-card__cost{ color: var(--pb-fg); font-size: 12px; letter-spacing:.14em; text-transform:uppercase; opacity:.9; }

.pb-econ{ padding: 14px 14px 12px; }
.pb-econ__title{ font-weight: 900; letter-spacing:.14em; text-transform:uppercase; margin: 2px 0 6px; }
.pb-econ__sub{ color: var(--pb-dim); font-size: 12px; letter-spacing:.14em; text-transform:uppercase; margin-bottom: 10px; }
.pb-econ__body{ position: relative; z-index: 1; }

.pb-kv{ display:flex; justify-content:space-between; align-items:center; padding: 10px 12px; border-radius: 14px; border:1px solid rgba(0,255,200,.18); background: rgba(0,0,0,.40); margin-bottom: 10px; }
.pb-kv span{ color: var(--pb-dim); font-size: 12px; letter-spacing:.14em; text-transform:uppercase; }
.pb-kv strong{ color: var(--pb-fg); font-size: 16px; letter-spacing:.06em; }

.pb-inv__row{ display:flex; justify-content:space-between; gap:12px; padding:10px 12px; border-radius:14px; border:1px solid rgba(0,255,200,.14); background: rgba(0,0,0,.35); margin-bottom: 8px; }
.pb-inv__name{ color: var(--pb-fg); letter-spacing:.08em; text-transform:uppercase; font-size: 12px; }
.pb-inv__qty{ color: var(--pb-dim); letter-spacing:.14em; text-transform:uppercase; font-size: 12px; }
.pb-muted{ color: var(--pb-dim); letter-spacing:.14em; text-transform:uppercase; font-size: 12px; }



/* =========================
   PORTAL / PROXY PROFILES (pbpa-*)
   Readable on dark backgrounds. White text. Terminal authority panels.
========================= */
.pbpa-card{
  color: rgba(230,255,245,.92);
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(0,255,200,.22);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  padding: 16px 16px;
  margin: 12px 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
}
.pbpa-title{
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: .95;
}
.pbpa-tagline{ color: rgba(255,255,255,.85); margin-top: 6px; }
.pbpa-bio{ color: rgba(255,255,255,.82); margin-top: 10px; line-height: 1.45; }

.pbpa-btn{
  display:inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,255,200,.28);
  background: rgba(0,0,0,.35);
  color: #fff !important;
  text-decoration:none !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.pbpa-btn:hover{
  background: rgba(0,255,200,.10);
  border-color: rgba(0,255,200,.45);
}

.pbpa-link{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  text-decoration:none !important;
  color: #fff !important;
}
.pbpa-link:hover{
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
}
.pbpa-link-title{ font-weight: 800; letter-spacing: .10em; text-transform: uppercase; }
.pbpa-link-sub{ color: rgba(255,255,255,.72); font-size: 12px; margin-top: 4px; }

.pbpa-metrics{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.pbpa-metric{
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(0,170,255,.18);
}
.pbpa-k{ font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .75; color:#fff; }
.pbpa-v{ font-size: 14px; font-weight: 900; color:#fff; margin-top: 3px; }

.pbpa-chip{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
}

.pbpa-form label{ color:#fff; display:block; margin: 10px 0 6px; }
.pbpa-form input,
.pbpa-form textarea{
  width:100%;
  box-sizing:border-box;
  padding:10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
}
.pbpa-form input::placeholder,
.pbpa-form textarea::placeholder{ color: rgba(255,255,255,.6); }
.pbpa-form input:focus,
.pbpa-form textarea:focus{
  outline:none;
  border-color: rgba(0,255,200,.55);
  box-shadow: 0 0 0 3px rgba(0,255,200,.15);
}

.pbpa-userlist{ margin-top: 10px; }
.pbpa-user{
  display:flex; gap:12px; align-items:center;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  text-decoration:none !important;
  color:#fff !important;
}
.pbpa-user:hover{ background: rgba(255,255,255,.06); }

.pbpa-proxy-avatar{
  width: 54px; height:54px; border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  overflow:hidden;
}
.pbpa-proxy-avatar img{ width:100%; height:100%; object-fit: cover; display:block; }



/* =========================================================
   PIXELBURGH — UNIFIED PANEL THEME (Core modules + blocks)
   - Shared tokens + "system message" styling
   - Ensures WHITE readable text on dark backgrounds
========================================================= */

:root{
  --pb-fg: rgba(230,255,245,.92);
  --pb-dim: rgba(230,255,245,.76);
  --pb-faint: rgba(230,255,245,.55);

  --pb-line: rgba(0,255,200,.22);
  --pb-line2: rgba(0,170,255,.16);
  --pb-shadow: rgba(0,0,0,.70);

  --pb-r: 18px;
  --pb-panel: rgba(0,0,0,.65);
  --pb-panel2: rgba(0,0,0,.72);

  --pb-focus: rgba(0,200,255,.60);
  --pb-focusGlow: rgba(0,200,255,.40);
}

/* Generic panel wrapper you can paste anywhere */
.pb-panel,
.pb-card,
.pbsc-card,
.pbpa-card,
.pbpa-proxy-card,
.pb-shop__shell{
  position: relative;
  border-radius: var(--pb-r);
  border: 1px solid var(--pb-line);
  background: var(--pb-panel);
  overflow: hidden;
  color: var(--pb-fg);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.35) inset,
    0 18px 60px var(--pb-shadow),
    0 0 36px rgba(0,255,200,.06);
}

/* scanline + soft bloom overlay */
.pb-panel::before,
.pb-card::before,
.pbsc-card::before,
.pbpa-card::before,
.pbpa-proxy-card::before,
.pb-shop__shell::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 30%, rgba(0,255,200,.14), transparent 55%),
    radial-gradient(circle at 84% 22%, rgba(0,170,255,.10), transparent 58%),
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.028) 0px,
      rgba(255,255,255,0.012) 1px,
      rgba(0,0,0,0) 3px
    );
  opacity:.55;
  mix-blend-mode: overlay;
}

/* corner bolts */
.pb-panel::after,
.pb-card::after,
.pbsc-card::after,
.pbpa-card::after,
.pbpa-proxy-card::after,
.pb-shop__shell::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12px 12px, rgba(0,255,200,.48) 2px, transparent 4px),
    radial-gradient(circle at calc(100% - 12px) 12px, rgba(0,255,200,.48) 2px, transparent 4px),
    radial-gradient(circle at 12px calc(100% - 12px), rgba(0,255,200,.48) 2px, transparent 4px),
    radial-gradient(circle at calc(100% - 12px) calc(100% - 12px), rgba(0,255,200,.48) 2px, transparent 4px);
  opacity:.85;
}

/* Typography normalization for Core blocks */
.pb-panel, .pb-card, .pbsc-card, .pbpa-card, .pbpa-proxy-card,
.pb-panel * , .pb-card * , .pbsc-card * , .pbpa-card * , .pbpa-proxy-card *{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
}

.pb-muted, .pbsc-muted{ color: var(--pb-faint) !important; }
.pb-kv b{ color: var(--pb-fg); }

/* Buttons / links */
.pb-btn, .pbsc-copy, .pbpa-btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,255,200,.26);
  background: rgba(0,0,0,.42);
  color: var(--pb-fg) !important;
  text-decoration:none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: 11px;
  cursor:pointer;
}
.pb-btn:hover, .pbsc-copy:hover, .pbpa-btn:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.30);
}
.pb-btn:focus, .pbsc-copy:focus, .pbpa-btn:focus{
  outline:none;
  border-color: var(--pb-focus);
  box-shadow: 0 0 6px var(--pb-focusGlow);
}

/* Inputs (use for Submit/Forms and profile edit) */
.pb-panel input, .pb-panel select, .pb-panel textarea,
.pbpa-proxy-card input, .pbpa-proxy-card select, .pbpa-proxy-card textarea,
.pbsc-card input, .pbsc-card select, .pbsc-card textarea{
  background: rgba(0,0,0,0.45) !important;
  color: var(--pb-fg) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
}
.pb-panel input::placeholder, .pb-panel textarea::placeholder{
  color: rgba(255,255,255,0.6) !important;
}
.pb-panel select option{ background:#111; color:#fff; }

/* =========================
   SYSTEM MESSAGE BLOCK (BETA NOTICE)
   (You can paste the HTML with class pb-sysmsg anywhere)
========================= */
.pb-sysmsg{
  position: relative;
  border-radius: var(--pb-r);
  border: 1px solid var(--pb-line);
  background: var(--pb-panel);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.35) inset,
    0 18px 60px var(--pb-shadow),
    0 0 36px rgba(0,255,200,.06);
  color: var(--pb-fg);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  letter-spacing: .02em;
  padding: 14px 16px;
  margin: 14px 0;
  min-width: 0;
}
.pb-sysmsg::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 30%, rgba(0,255,200,.14), transparent 55%),
    radial-gradient(circle at 84% 22%, rgba(0,170,255,.10), transparent 58%),
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.028) 0px,
      rgba(255,255,255,0.012) 1px,
      rgba(0,0,0,0) 3px
    );
  opacity:.55;
  mix-blend-mode: overlay;
}
.pb-sysmsg::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12px 12px, rgba(0,255,200,.48) 2px, transparent 4px),
    radial-gradient(circle at calc(100% - 12px) 12px, rgba(0,255,200,.48) 2px, transparent 4px),
    radial-gradient(circle at 12px calc(100% - 12px), rgba(0,255,200,.48) 2px, transparent 4px),
    radial-gradient(circle at calc(100% - 12px) calc(100% - 12px), rgba(0,255,200,.48) 2px, transparent 4px);
  opacity:.85;
}
.pb-sysmsg__top{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:10px;
  border-bottom: 1px solid rgba(0,255,200,.14);
}
.pb-sysmsg__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,255,200,.26);
  background: rgba(0,0,0,.42);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--pb-fg);
  white-space: nowrap;
}
.pb-sysmsg__dot{
  width:10px; height:10px;
  border-radius:50%;
  background: rgba(0,255,200,.55);
  box-shadow: 0 0 14px rgba(0,255,200,.22);
}
.pb-sysmsg__stamp{
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--pb-faint);
  white-space: nowrap;
}
.pb-sysmsg__body{
  position: relative;
  z-index: 1;
  padding-top: 12px;
  font-size: 12.5px;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--pb-dim);
}
.pb-sysmsg__body strong{ color: var(--pb-fg); }
@media (max-width: 700px){
  .pb-sysmsg__top{ flex-direction: column; align-items:flex-start; }
  .pb-sysmsg__stamp{ opacity:.9; }
}

/* =========================
   Profile header image styling (proxy card)
========================= */
.pbpa-proxy-header{
  position:relative;
  border-bottom: 1px solid rgba(0,255,200,.14);
  background: rgba(0,0,0,.35);
  overflow:hidden;
}
.pbpa-proxy-header::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 30%, rgba(0,255,200,.18), transparent 55%),
    radial-gradient(circle at 84% 22%, rgba(0,170,255,.14), transparent 58%),
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.028) 0px,
      rgba(255,255,255,0.012) 1px,
      rgba(0,0,0,0) 3px
    );
  opacity:.65;
  mix-blend-mode: overlay;
}
.pbpa-proxy-header::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12px 12px, rgba(0,255,200,.48) 2px, transparent 4px),
    radial-gradient(circle at calc(100% - 12px) 12px, rgba(0,255,200,.48) 2px, transparent 4px),
    radial-gradient(circle at 12px calc(100% - 12px), rgba(0,255,200,.48) 2px, transparent 4px),
    radial-gradient(circle at calc(100% - 12px) calc(100% - 12px), rgba(0,255,200,.48) 2px, transparent 4px);
  opacity:.60;
}
.pbpa-proxy-header img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.92;
  filter: contrast(1.05) saturate(1.05);
}


/* =========================
   REGISTRATION: CLASS CARDS
========================= */
.pb-auth__field{ margin-top: 12px; }
.pb-auth__label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .92;
  margin-bottom: 6px;
}
.pb-auth__hint{
  font-size: 12px;
  color: var(--pb-dim);
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.pb-classgrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 640px){
  .pb-classgrid{ grid-template-columns: 1fr; }
}

.pb-classcard{
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(0,255,200,.22);
  background: rgba(0,0,0,.55);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  cursor: pointer;
  overflow: hidden;
}
.pb-classcard input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pb-classcard__img{
  border-radius: 14px;
  border: 1px solid rgba(0,255,200,.18);
  background: rgba(0,0,0,.35);
  background-size: cover;
  background-position: center;
  min-height: 92px;
}

.pb-classcard__name{
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(230,255,245,.92);
  margin-bottom: 6px;
}
.pb-classcard__desc{
  font-size: 12px;
  line-height: 1.4;
  color: rgba(230,255,245,.76);
}

.pb-classcard__dot{
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(0,255,200,.45);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset;
}

.pb-classcard.is-selected,
.pb-classcard:has(input:checked){
  border-color: rgba(0,255,200,.55);
  box-shadow: 0 0 0 1px rgba(0,255,200,.20) inset, 0 18px 55px rgba(0,0,0,.55);
}
.pb-classcard.is-selected .pb-classcard__dot,
.pb-classcard:has(input:checked) .pb-classcard__dot{
  background: rgba(0,255,200,.75);
}

/* =========================
   USER CHIP (canonical identity component)
========================= */
.pb-userchip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--pb-fg);
  border: 1px solid var(--pb-line);
  background: var(--pb-panel);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.pb-userchip:hover{ filter: brightness(1.06); }
.pb-userchip__av img{
  display:block;
  border-radius: 999px;
  border: 1px solid var(--pb-line2);
  background: rgba(0,0,0,.55);
}
.pb-userchip__meta{ display:flex; flex-direction:column; line-height:1.1; }
.pb-userchip__name{ font-weight: 700; letter-spacing:.03em; }
.pb-userchip__sub{ display:flex; gap:8px; align-items:center; margin-top:2px; }
.pb-userchip__loc{ color: var(--pb-dim); font-size: .88em; }

.pb-userchip--sm{ padding:6px 10px; gap:8px; }
.pb-userchip--md{ padding:8px 12px; }
.pb-userchip--lg{ padding:10px 14px; }

/* HUD links */
.pb-hud__link{
  color: rgba(230,255,246,0.92);
  text-decoration: none;
}
.pb-hud__link:hover{ text-decoration: underline; }

/* Avoid HUD covering footers */
body.pb-hud-on footer,
body.pb-hud-on .site-footer,
body.pb-hud-on #colophon{
  margin-bottom: 50px !important;
}

/* =========================================================
   PB CORE — MODULE WRAPPERS (SURFACES)
========================================================= */
.pb-surface{ display:grid; gap:14px; }
@media (min-width: 960px){
  .pb-surface--dashboard{ grid-template-columns: 1fr 1fr; }
  .pb-surface--profile{ grid-template-columns: 1fr; }
}
.pb-wrap{
  --pbw-line: rgba(0,255,200,.22);
  --pbw-panel: rgba(0,0,0,.65);
  --pbw-fg: rgba(230,255,245,.92);
  border:1px solid var(--pbw-line);
  border-radius:18px;
  background: var(--pbw-panel);
  overflow:hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset, 0 18px 40px rgba(0,0,0,.45);
}
.pb-wrap.is-featured{
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset, 0 18px 40px rgba(0,0,0,.45), 0 0 30px rgba(0,255,200,.12);
}
.pb-wrap__hdr{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px;
  cursor:pointer;
  background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.55));
  border-bottom:1px solid rgba(0,255,200,.14);
}
.pb-wrap__left{ display:flex; align-items:center; gap:10px; }
.pb-wrap__icon{ font-size:18px; }
.pb-wrap__name{ color: var(--pbw-fg); letter-spacing:.06em; text-transform:uppercase; font-weight:700; font-size:13px; }
.pb-wrap__seg{ color: rgba(230,255,245,.60); font-size:11px; margin-top:2px; }
.pb-wrap__right{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.pb-wrap__btn{
  border:1px solid rgba(0,255,200,.22);
  background: rgba(0,0,0,.35);
  color: rgba(230,255,245,.88);
  border-radius:10px;
  padding:6px 8px;
  font-size:11px;
  letter-spacing:.04em;
}
.pb-wrap__btn:hover{ background: rgba(0,0,0,.48); }
.pb-wrap__chev{ color: rgba(230,255,245,.65); margin-left:4px; }
.pb-wrap__badge{
  border:1px solid rgba(0,255,200,.22);
  border-radius:999px;
  padding:4px 8px;
  font-size:11px;
  color: rgba(230,255,245,.85);
}
.pb-wrap__body{ padding: 12px; }
/* Skins */
.pb-wrap--arena{ --pbw-line: rgba(255,80,80,.25); border-color: var(--pbw-line); }
.pb-wrap--arena .pb-wrap__hdr{ border-bottom-color: rgba(255,80,80,.18); }
.pb-wrap--arcade{ --pbw-line: rgba(0,255,140,.22); border-color: var(--pbw-line); }
.pb-wrap--arcade .pb-wrap__hdr{ border-bottom-color: rgba(0,255,140,.16); }
.pb-wrap--core{ --pbw-line: rgba(0,255,200,.22); border-color: var(--pbw-line); }


.pb-econ__tablewrap{ overflow:auto; border-radius: 14px; border:1px solid rgba(0,255,200,.16); background: rgba(0,0,0,.35); }
.pb-econ__table{ width:100%; border-collapse:collapse; min-width: 520px; }
.pb-econ__table th, .pb-econ__table td{ padding:10px 12px; border-bottom:1px solid rgba(0,255,200,.10); font-size: 13px; }
.pb-econ__table th{ color: var(--pb-dim); font-size: 12px; letter-spacing:.14em; text-transform:uppercase; background: rgba(0,0,0,.35); position: sticky; top:0; }
.pb-econ__when{ white-space: nowrap; color: var(--pb-dim); }
.pb-econ__reason{ color: var(--pb-fg); }
.pb-econ__delta{ text-align:right; white-space: nowrap; }
.pb-econ__asset{ color: var(--pb-faint); margin-left: 6px; font-size: 11px; letter-spacing:.12em; text-transform:uppercase; }
.pb-econ__empty{ color: var(--pb-dim); padding: 12px 2px; }

/* =========================================================
   PB Core — PROFILE (Facebook-style card)
========================================================= */
.pb-wrap--profile{ --pb-line: rgba(0,255,200,.22); }
.pb-wrap--profile.is-featured .pb-wrap__hdr{ display:none; }
.pb-wrap--profile.is-featured .pb-wrap__body{ padding:0; }

.pb-profile-card{
  position:relative;
  border:1px solid rgba(0,255,200,.22);
  border-radius:18px;
  background:rgba(0,0,0,.65);
  overflow:hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset, 0 18px 50px rgba(0,0,0,.55);
}
.pb-profile-cover{
  height:190px;
  background:
    radial-gradient(800px 240px at 30% 40%, rgba(28,246,255,.28), transparent 55%),
    linear-gradient(135deg, rgba(28,246,255,.18), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.88));
  background-size:cover;
  background-position:center;
}
.pb-profile-card__inner{ padding:16px 16px 18px; }
.pb-profile-top{ display:flex; gap:14px; align-items:flex-end; margin-top:-56px; }
.pb-profile-avatar{
  width:112px; height:112px; border-radius:18px;
  border:1px solid rgba(0,255,200,.35);
  background:rgba(0,0,0,.70);
  box-shadow: 0 10px 30px rgba(0,0,0,.65);
  overflow:hidden;
  display:block;
}
.pb-profile-avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.pb-profile-avatar__fallback{ display:flex; align-items:center; justify-content:center; height:100%; font-weight:700; letter-spacing:.08em; color:rgba(230,255,245,.92); }

.pb-profile-id{ padding-bottom:8px; }
.pb-profile-name{ font-size:22px; font-weight:700; color:rgba(230,255,245,.92); }
.pb-profile-handle{ font-family: ui-monospace, Menlo, Consolas, monospace; font-size:12px; color:rgba(230,255,245,.72); margin-top:2px; }
.pb-profile-tagline{ margin-top:6px; color:rgba(230,255,245,.86); }
.pb-profile-loc{ margin-top:4px; color:rgba(230,255,245,.66); font-size:13px; }
.pb-profile-bio{ margin-top:12px; color:rgba(230,255,245,.78); line-height:1.5; }

.pb-profile-stats{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:10px; margin-top:14px; }
.pb-profile-stat{
  border:1px solid rgba(0,255,200,.18);
  background:rgba(0,0,0,.55);
  border-radius:14px;
  padding:10px 12px;
}
.pb-profile-stat__k{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:rgba(230,255,245,.62); }
.pb-profile-stat__v{ font-size:18px; font-weight:700; margin-top:4px; color:rgba(230,255,245,.92); }

.pb-profile-actions{ margin-top:12px; }
.pb-profile-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(0,255,200,.22);
  background:rgba(0,0,0,.55);
  color:rgba(230,255,245,.92);
  font-family: ui-monospace, Menlo, Consolas, monospace;
  text-decoration:none;
}
.pb-profile-btn:hover{ background:rgba(0,0,0,.72); }

/* Links module */
.pb-profile-links{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px; }
.pb-profile-link{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,255,200,.18);
  background:rgba(0,0,0,.55);
  text-decoration:none;
}
.pb-profile-link:hover{ background:rgba(0,0,0,.72); }
.pb-profile-link__label{ display:block; color:rgba(230,255,245,.92); font-weight:700; }
.pb-profile-link__url{ display:block; margin-top:4px; font-family: ui-monospace, Menlo, Consolas, monospace; font-size:12px; color:rgba(230,255,245,.62); }

@media (max-width: 720px){
  .pb-profile-cover{ height:170px; }
  .pb-profile-top{ margin-top:-48px; }
  .pb-profile-avatar{ width:96px; height:96px; }
  .pb-profile-stats{ grid-template-columns: 1fr; }
  .pb-profile-links{ grid-template-columns: 1fr; }
}


/* =========================================================
   PB PROFILE CARD — SINGLE ROW REFINEMENT (v1.2.7.4)
   Keeps the header as ONE ROW for easier module organization
========================================================= */
.pb-profile-row{
  display:grid;
  grid-template-columns: 112px 1fr auto auto;
  gap: 14px;
  align-items: center;
}
.pb-profile-card__inner{ padding-top: 14px; }

.pb-profile-avatar{
  width: 112px;
  height: 112px;
  border-radius: 26px;
  overflow: hidden;
  display:block;
  border: 1px solid rgba(0,255,200,.22);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset, 0 12px 26px rgba(0,0,0,.45);
  background: rgba(0,0,0,.65);
  margin-top: -56px; /* keep the avatar overlapping the cover */
}

.pb-profile-id{ min-width: 0; }
.pb-profile-bio--inline{ margin-top: 8px; max-width: 72ch; }

.pb-profile-stats--row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.pb-profile-stats--row .pb-profile-stat{
  min-width: 112px;
}

.pb-profile-actions--row{ display:flex; justify-content: flex-end; }

@media (max-width: 900px){
  .pb-profile-row{ grid-template-columns: 96px 1fr; }
  .pb-profile-stats--row{ justify-content:flex-start; }
  .pb-profile-actions--row{ justify-content:flex-start; }
  .pb-profile-avatar{ width: 96px; height: 96px; margin-top: -44px; border-radius: 22px; }
}


/* =========================================================
   PB EDIT PROFILE — MATCH PROFILE/DASHBOARD SURFACES
========================================================= */
.pb-profile-edit-card .pbpa-title{
  margin: 0 0 10px;
}
.pb-profile-edit-card .pbpa-grid{
  gap: 14px;
}
.pb-profile-edit-card input[type="text"],
.pb-profile-edit-card input[type="url"],
.pb-profile-edit-card textarea{
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(0,255,200,.18);
  color: rgba(230,255,245,.92);
}
.pb-profile-edit-card textarea{ min-height: 110px; }


/* =========================
   PB CORE — identity pass stack
========================= */
.pb-surface,
.pb-surface--dashboard,
.pb-surface--profile{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.pb-wrap,
.pb-wrap.pb-wrap--dashboard,
.pb-wrap.pb-wrap--profile{
  width:100%;
}
.pb-userchip{align-items:flex-start}
.pb-userchip__meta{min-width:0}


/* =========================================================
   PB CORE — PASS 1 PROFILE PRESENCE + STACKING POLISH
========================================================= */
:root{
  --pb-accent-cyan: #1cf6ff;
  --pb-accent-magenta: #ff4fd8;
  --pb-accent-lime: #8dffb3;
  --pb-panel-bg: rgba(5,10,18,.76);
  --pb-panel-bg-strong: rgba(4,8,14,.88);
  --pb-panel-edge: rgba(28,246,255,.18);
  --pb-panel-edge-strong: rgba(28,246,255,.32);
  --pb-panel-glow: 0 0 0 1px rgba(255,255,255,.025) inset, 0 20px 48px rgba(0,0,0,.48), 0 0 28px rgba(28,246,255,.08);
  --pb-panel-glow-strong: 0 0 0 1px rgba(255,255,255,.035) inset, 0 24px 56px rgba(0,0,0,.56), 0 0 42px rgba(28,246,255,.12);
  --pb-space-1: 10px;
  --pb-space-2: 14px;
  --pb-space-3: 18px;
  --pb-space-4: 24px;
  --pb-space-5: 30px;
  --pb-heading-weight: 800;
  --pb-label-weight: 700;
}

.pb-surface{
  gap: var(--pb-space-3);
}

.pb-surface-identity{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.pb-surface-identity__sub{
  padding:0 2px;
  color:rgba(230,255,245,.66);
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.pb-neon-tape{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  min-height:48px;
  padding:12px 16px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(28,246,255,.26);
  color:rgba(240,255,252,.96);
  background:
    linear-gradient(90deg, rgba(28,246,255,.22), rgba(255,79,216,.17) 46%, rgba(28,246,255,.14)),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    rgba(6,10,16,.88);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.03) inset,
    0 0 24px rgba(28,246,255,.12),
    0 0 34px rgba(255,79,216,.08),
    0 18px 40px rgba(0,0,0,.34);
}

.pb-neon-tape::before,
.pb-wrap__tape::before{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(180deg, rgba(255,255,255,.065) 0 1px, transparent 1px 4px);
  opacity:.15;
  pointer-events:none;
}

.pb-neon-tape::after,
.pb-wrap__tape::after{
  content:"";
  position:absolute;
  inset:-35% auto auto -12%;
  width:42%;
  height:190%;
  background:linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  transform:rotate(12deg);
  opacity:.16;
  pointer-events:none;
}

.pb-neon-tape__label,
.pb-wrap__tape-label{
  position:relative;
  z-index:1;
  font-size:12px;
  font-weight:var(--pb-label-weight);
  letter-spacing:.26em;
  text-transform:uppercase;
  color:rgba(240,255,252,.84);
}

.pb-neon-tape__sep{
  position:relative;
  z-index:1;
  opacity:.72;
  letter-spacing:.2em;
}

.pb-neon-tape__name{
  position:relative;
  z-index:1;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.pb-wrap{
  border:1px solid var(--pb-panel-edge);
  background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0)), var(--pb-panel-bg);
  box-shadow:var(--pb-panel-glow);
}

.pb-wrap.is-featured{ box-shadow: var(--pb-panel-glow-strong); }

.pb-wrap__tape{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  min-height:34px;
  padding:8px 14px;
  border-bottom:1px solid rgba(28,246,255,.12);
  background:
    linear-gradient(90deg, rgba(28,246,255,.16), rgba(255,79,216,.10) 54%, rgba(28,246,255,.08)),
    rgba(7,11,18,.92);
}

.pb-wrap__tape-seg{
  position:relative;
  z-index:1;
  color:rgba(240,255,252,.56);
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.pb-wrap__hdr{
  padding:14px 16px;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)), linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.58));
}

.pb-wrap__name{
  font-size:14px;
  font-weight:var(--pb-heading-weight);
  letter-spacing:.12em;
}

.pb-wrap__seg{
  letter-spacing:.18em;
  text-transform:uppercase;
}

.pb-wrap__body{
  padding:16px;
}

.pb-wrap__btn,
.pb-wrap__badge{
  border-color:rgba(28,246,255,.18);
  background:rgba(8,13,21,.66);
  box-shadow:0 0 0 1px rgba(255,255,255,.02) inset;
}

.pb-wrap--profile.is-featured .pb-wrap__tape{
  border-bottom-color:rgba(28,246,255,.16);
}

.pb-profile-card{
  border-color:var(--pb-panel-edge-strong);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)), var(--pb-panel-bg-strong);
  box-shadow:var(--pb-panel-glow-strong);
}

.pb-profile-cover{
  height:212px;
  background:
    radial-gradient(760px 260px at 22% 26%, rgba(28,246,255,.30), transparent 56%),
    radial-gradient(600px 220px at 84% 12%, rgba(255,79,216,.18), transparent 52%),
    linear-gradient(135deg, rgba(28,246,255,.15), rgba(0,0,0,0) 48%),
    linear-gradient(180deg, rgba(1,4,9,.24), rgba(1,4,9,.9));
  border-bottom:1px solid rgba(28,246,255,.14);
}

.pb-profile-card__inner{
  padding:18px 18px 20px;
}

.pb-profile-row{
  grid-template-columns: 120px minmax(0,1fr) auto auto;
  gap:16px;
  align-items:flex-start;
}

.pb-profile-avatar{
  width:120px;
  height:120px;
  border-radius:24px;
  border:1px solid rgba(28,246,255,.34);
  box-shadow:0 0 0 1px rgba(255,255,255,.035) inset, 0 18px 36px rgba(0,0,0,.52), 0 0 26px rgba(28,246,255,.08);
  background:rgba(4,9,16,.86);
}

.pb-profile-kicker{
  margin-bottom:8px;
  color:rgba(240,255,252,.6);
  font-size:11px;
  letter-spacing:.24em;
  text-transform:uppercase;
}

.pb-profile-name{
  font-size:26px;
  font-weight:800;
  letter-spacing:.02em;
}

.pb-profile-handle{
  color:rgba(230,255,245,.7);
  letter-spacing:.12em;
  text-transform:uppercase;
}

.pb-profile-tagline{
  margin-top:8px;
  font-size:15px;
}

.pb-profile-bio--inline{
  margin-top:10px;
  color:rgba(230,255,245,.76);
}

.pb-profile-stat{
  border-color:rgba(28,246,255,.16);
  background:rgba(5,10,17,.8);
}

.pb-profile-stat__k{
  letter-spacing:.18em;
}

.pb-profile-btn{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)), rgba(6,11,18,.78);
  border-color:rgba(28,246,255,.24);
  box-shadow:0 0 0 1px rgba(255,255,255,.03) inset;
}

.pb-profile-links{
  grid-template-columns: 1fr;
  gap:12px;
}

.pb-profile-link{
  background:rgba(5,10,17,.76);
  border-color:rgba(28,246,255,.16);
}

.pb-profile-link__label{
  letter-spacing:.06em;
}

.pb-profile-link__url{
  word-break:break-word;
}

@media (max-width: 1080px){
  .pb-profile-row{
    grid-template-columns: 108px minmax(0,1fr);
  }
  .pb-profile-stats--row,
  .pb-profile-actions--row{
    justify-content:flex-start;
  }
}

@media (max-width: 720px){
  .pb-neon-tape,
  .pb-wrap__tape{
    padding-left:12px;
    padding-right:12px;
  }
  .pb-neon-tape{
    min-height:44px;
    flex-wrap:wrap;
    gap:6px 10px;
  }
  .pb-profile-cover{ height:186px; }
  .pb-profile-avatar{
    width:96px;
    height:96px;
    margin-top:-44px;
  }
  .pb-profile-name{ font-size:22px; }
  .pb-wrap__hdr,
  .pb-wrap__body{ padding-left:14px; padding-right:14px; }
}


/* =========================================================
   PB CORE — PASS 2 PROFILE CONTROL + AUTH COHERENCE READINESS
========================================================= */
.pbpa-btn--ghost{ background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.14); }
.pb-profile-console{ padding: 0; overflow: hidden; }
.pb-profile-console .pb-neon-tape--section{ margin: 0; border-radius: 18px 18px 0 0; }
.pb-profile-console__intro,
.pb-profile-console__form,
.pb-profile-console__notice{ padding-left: 18px; padding-right: 18px; }
.pb-profile-console__intro{ padding-top: 16px; }
.pb-profile-console__lead{ font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: rgba(230,255,245,.94); }
.pb-profile-console__sub{ margin-top: 6px; color: rgba(230,255,245,.72); max-width: 72ch; }
.pb-profile-console__actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }
.pb-profile-console__notice{ margin-top: 14px; color: #d7fff4; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pb-profile-console__form{ display:flex; flex-direction:column; gap: 16px; padding-top: 16px; padding-bottom: 18px; }
.pb-profile-console__group{ border: 1px solid rgba(28,246,255,.13); background: rgba(0,0,0,.18); border-radius: 18px; padding: 16px; display:flex; flex-direction:column; gap: 12px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.02); }
.pb-profile-console__grouphead{ display:flex; flex-direction:column; gap: 6px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
.pb-profile-console__eyebrow{ font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: rgba(230,255,245,.96); }
.pb-profile-console__help,.pb-profile-console__small{ font-size: 12px; line-height: 1.5; color: rgba(230,255,245,.65); }
.pb-profile-console__toggles{ display:flex; flex-direction:column; gap: 10px; }
.pb-profile-console__toggle{ display:flex; align-items:center; gap: 10px; min-height: 46px; padding: 10px 12px; border-radius: 14px; border:1px solid rgba(28,246,255,.14); background: rgba(0,0,0,.28); color: rgba(230,255,245,.88); }
.pb-profile-console__toggle input{ accent-color: var(--pb-accent-cyan); }
.pb-profile-console__classbox{ border: 1px solid rgba(255,79,216,.18); background: linear-gradient(180deg, rgba(255,79,216,.08), rgba(28,246,255,.04)); border-radius: 16px; padding: 14px; }
.pb-profile-console__classlabel{ font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: rgba(230,255,245,.72); }
.pb-profile-console__classname{ margin-top: 4px; font-size: 18px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.pb-profile-console__classdesc{ margin-top: 6px; color: rgba(230,255,245,.78); line-height: 1.45; }
.pb-profile-console__footer{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-start; }
.pb-profile-edit-card label{ display:block; font-size:12px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; color: rgba(230,255,245,.92); margin-bottom: 6px; }
.pb-profile-edit-card select,
.pb-profile-edit-card input[type="text"],
.pb-profile-edit-card input[type="url"],
.pb-profile-edit-card textarea{ width:100%; border-radius:14px; padding:12px 13px; }
.pb-profile-edit-card select{ background: rgba(0,0,0,.55); border: 1px solid rgba(0,255,200,.18); color: rgba(230,255,245,.92); }
.pb-profile-class{ margin-top: 12px; padding: 10px 12px; border-radius: 14px; border: 1px solid rgba(255,79,216,.18); background: rgba(255,79,216,.05); }
.pb-profile-class__k{ font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: rgba(230,255,245,.68); }
.pb-profile-class__v{ margin-top: 2px; font-size: 13px; font-weight: 900; letter-spacing: .10em; text-transform: uppercase; color:#fff; }
.pb-profile-class__hint{ margin-top: 4px; font-size: 12px; line-height: 1.45; color: rgba(230,255,245,.7); }
.pb-auth__rail{ margin: 12px 0 14px; padding: 12px 14px; border-radius: 16px; border: 1px solid rgba(28,246,255,.16); background: rgba(0,0,0,.28); }
.pb-auth__callout{ color: rgba(230,255,245,.84); line-height: 1.45; }
.pb-auth__switch{ margin-top: 8px; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.pb-auth__switch a{ color: var(--pb-accent-cyan); text-decoration: none; }
.pb-auth__switch a:hover{ text-decoration: underline; }
@media (max-width: 680px){
  .pb-profile-console__actions,
  .pb-profile-console__footer{ flex-direction:column; }
  .pb-profile-console__actions .pbpa-btn,
  .pb-profile-console__footer .pbpa-btn{ width:100%; text-align:center; }
}


/* =========================================================
   PB CORE — PASS 3 AUTH COHERENCE + ARRIVAL FLOW
========================================================= */
.pb-auth-shell{ padding: 0; overflow: hidden; }
.pb-auth-shell .pb-neon-tape--section{ margin: 0; border-radius: 18px 18px 0 0; }
.pb-auth-shell .pb-auth__head,
.pb-auth-shell .pb-auth__form,
.pb-auth-shell .pb-auth__switch,
.pb-auth-shell .pb-auth__notice{ padding-left: 18px; padding-right: 18px; }
.pb-auth-shell .pb-auth__head{ padding-top: 16px; }
.pb-auth__rail--flow{ margin: 12px 18px 14px; }
.pb-auth__flow{ display:flex; flex-direction:column; gap:10px; margin-top: 12px; }
.pb-auth__step{ display:flex; align-items:center; gap:10px; min-height: 44px; padding: 10px 12px; border-radius: 14px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.02); color: rgba(230,255,245,.76); }
.pb-auth__step.is-active{ border-color: rgba(28,246,255,.28); box-shadow: 0 0 0 1px rgba(28,246,255,.08), 0 0 22px rgba(28,246,255,.10); color: rgba(230,255,245,.96); }
.pb-auth__step.is-complete{ border-color: rgba(112,255,163,.22); color: rgba(230,255,245,.92); }
.pb-auth__stepk{ width: 34px; height: 34px; display:inline-flex; align-items:center; justify-content:center; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); font-weight: 900; letter-spacing: .08em; }
.pb-auth__stepv{ font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.pb-auth__path{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px; }
.pb-auth__path a,
.pb-auth__path span{ display:inline-flex; align-items:center; min-height: 34px; padding: 0 12px; border-radius: 999px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.10); color: rgba(230,255,245,.82); text-decoration:none; font-size:11px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.pb-auth__path a:hover{ border-color: rgba(28,246,255,.26); color: #fff; }
.pb-dashboard-arrival{ margin: 0 0 14px; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(28,246,255,.18); background: linear-gradient(180deg, rgba(28,246,255,.07), rgba(255,79,216,.04)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.02); }
.pb-dashboard-arrival__eyebrow{ font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: rgba(230,255,245,.7); }
.pb-dashboard-arrival__title{ margin-top: 4px; font-size: 16px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.pb-dashboard-arrival__text{ margin-top: 6px; color: rgba(230,255,245,.78); line-height: 1.48; max-width: 70ch; }
.pb-dashboard-arrival__list{ margin-top: 8px; color: rgba(230,255,245,.72); font-size: 12px; line-height: 1.5; }
.pb-dashboard-arrival__actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px; }
@media (max-width: 680px){
  .pb-auth__path,
  .pb-dashboard-arrival__actions{ flex-direction:column; }
  .pb-auth__path a,
  .pb-dashboard-arrival__actions .pbpa-btn{ width:100%; justify-content:center; }
}

/* =========================================================
   PB CORE — PASS 5 NODE SETUP + PROFILE IMAGE UPLOAD
========================================================= */
.pb-node-setup{ margin: 0 0 14px; overflow:hidden; }
.pb-node-setup--inline{ padding:14px 16px; border-radius:16px; border:1px solid rgba(28,246,255,.16); background:linear-gradient(180deg, rgba(28,246,255,.05), rgba(255,79,216,.03)); }
.pb-node-setup__head{ padding: 14px 16px 0; }
.pb-node-setup__title{ font-size: 15px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.pb-node-setup__text{ margin-top: 6px; color: rgba(230,255,245,.8); line-height: 1.5; max-width: 72ch; }
.pb-node-setup__meter{ padding: 12px 16px 0; }
.pb-node-setup__bar{ height: 10px; border-radius: 999px; background: rgba(255,255,255,.06); overflow:hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.pb-node-setup__bar span{ display:block; height:100%; border-radius:999px; background: linear-gradient(90deg, rgba(28,246,255,.95), rgba(255,79,216,.88)); box-shadow: 0 0 18px rgba(28,246,255,.24); }
.pb-node-setup__meta{ margin-top: 8px; font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: rgba(230,255,245,.72); }
.pb-node-setup__list{ display:flex; flex-direction:column; gap:10px; padding: 14px 16px 0; }
.pb-node-setup__item{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; padding: 12px 14px; border-radius: 16px; border:1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
.pb-node-setup__item.is-done{ border-color: rgba(112,255,163,.18); background: rgba(112,255,163,.05); }
.pb-node-setup__itemtitle{ font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color:#fff; }
.pb-node-setup__itemdesc{ margin-top: 4px; color: rgba(230,255,245,.74); line-height: 1.45; }
.pb-node-setup__itemmeta{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.pb-node-setup__chip{ display:inline-flex; align-items:center; min-height: 30px; padding: 0 10px; border-radius:999px; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: rgba(230,255,245,.82); }
.pb-node-setup__actions{ display:flex; flex-wrap:wrap; gap:10px; padding: 14px 16px 16px; }
.pb-profile-edit-card input[type="file"]{ width:100%; padding:12px 13px; border-radius:14px; border:1px dashed rgba(28,246,255,.22); background: rgba(255,255,255,.025); color: rgba(230,255,245,.86); }
@media (max-width: 680px){
  .pb-node-setup__item,
  .pb-node-setup__actions{ flex-direction:column; }
  .pb-node-setup__itemmeta,
  .pb-node-setup__actions .pbpa-btn{ width:100%; justify-content:flex-start; }
}


:root{
  --pb-notify-green: rgba(57,255,20,.96);
  --pb-notify-blue: rgba(0,194,255,.96);
  --pb-notify-red: rgba(255,92,92,.98);
}

.pb-notify-lane{position:fixed;left:18px;top:25vh;z-index:999999;display:flex;flex-direction:column;gap:10px;pointer-events:none}
.pb-notify{min-width:220px;max-width:340px;padding:12px 14px;border-radius:16px;background:rgba(10,10,14,.92);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);color:rgba(255,255,255,.96);border:1px solid rgba(0,255,255,.24);box-shadow:0 0 22px rgba(0,255,255,.14);transform:translateX(-12px);opacity:0;transition:opacity .22s ease, transform .22s ease;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}
.pb-notify--show{opacity:1;transform:translateX(0)}
.pb-notify__big{font-weight:950;letter-spacing:.08em;font-size:14px}
.pb-notify__small{margin-top:4px;font-size:11px;opacity:.78;letter-spacing:.06em}
.pb-notify--green{border-color:rgba(57,255,20,.48);box-shadow:0 0 22px rgba(57,255,20,.18)}
.pb-notify--green .pb-notify__big{color:var(--pb-notify-green);text-shadow:0 0 14px rgba(57,255,20,.26)}
.pb-notify--blue{border-color:rgba(0,194,255,.48);box-shadow:0 0 22px rgba(0,194,255,.18)}
.pb-notify--blue .pb-notify__big{color:var(--pb-notify-blue);text-shadow:0 0 14px rgba(0,194,255,.26)}
.pb-notify--red{border-color:rgba(255,61,61,.52);box-shadow:0 0 22px rgba(255,61,61,.18)}
.pb-notify--red .pb-notify__big{color:var(--pb-notify-red);text-shadow:0 0 14px rgba(255,61,61,.26)}
@media (max-width:782px){.pb-notify-lane{left:10px;right:10px;top:22vh}.pb-notify{max-width:none}}


/* =========================================================
   PB CORE — PASS 7 REWARD SWEEP + DASH ACTION BUTTON POLISH
========================================================= */
.pbpa-btn--profile-view,
.pb-profile-btn--view{
  background: linear-gradient(135deg, rgba(40,220,255,.26), rgba(0,132,255,.24));
  border-color: rgba(64,224,255,.58);
  color: #ecffff !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 0 20px rgba(40,220,255,.20);
}
.pbpa-btn--profile-view:hover,
.pb-profile-btn--view:hover{
  background: linear-gradient(135deg, rgba(56,236,255,.34), rgba(32,144,255,.30));
  border-color: rgba(120,238,255,.78);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 0 24px rgba(40,220,255,.28);
}
.pbpa-btn--profile-edit,
.pb-profile-btn--edit{
  background: linear-gradient(135deg, rgba(255,79,216,.28), rgba(151,71,255,.24));
  border-color: rgba(255,113,232,.62);
  color: #fff3ff !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 0 20px rgba(255,79,216,.20);
}
.pbpa-btn--profile-edit:hover,
.pb-profile-btn--edit:hover{
  background: linear-gradient(135deg, rgba(255,100,226,.34), rgba(171,91,255,.30));
  border-color: rgba(255,160,240,.84);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 0 24px rgba(255,79,216,.30);
}
.pb-dashboard-arrival__actions .pbpa-btn--profile-view,
.pb-dashboard-arrival__actions .pbpa-btn--profile-edit{
  min-width: 220px;
}


.pb-node-setup__callout{display:inline-flex;align-items:center;min-height:38px;padding:0 12px;border-radius:999px;border:1px solid rgba(255,179,71,.28);background:rgba(255,179,71,.08);color:rgba(255,221,168,.95);font-size:11px;font-weight:900;letter-spacing:.14em;text-transform:uppercase}
.pb-profile-console__setupcallout{margin:0 0 14px;padding:14px 16px;border-radius:16px;border:1px solid rgba(28,246,255,.18);background:linear-gradient(180deg,rgba(28,246,255,.06),rgba(255,79,216,.03))}
.pb-profile-console__setupcallout.is-open{border-color:rgba(255,128,128,.24);background:linear-gradient(180deg,rgba(255,96,96,.08),rgba(255,79,216,.03))}
.pb-profile-console__setuphead{font-size:11px;font-weight:900;letter-spacing:.14em;text-transform:uppercase;color:rgba(230,255,245,.9)}
.pb-profile-console__setuptext{margin-top:6px;color:rgba(230,255,245,.78);line-height:1.5}


/* === PB CORE PASS 10: Dashboard Header Image === */
.pb-dashboard-header{
  position: relative;
  overflow: hidden;
}
.pb-dashboard-header::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://pixelburgh.space/wp-content/uploads/2026/03/signalarmor.png') no-repeat right center / contain;
  opacity: .18;
  pointer-events: none;
}

/* Auth hero */
.pb-auth-hero img{
  width:100%;
  max-width:720px;
  display:block;
  margin:0 auto 16px;
  border-radius:14px;
}

/* Auth-state buttons */
.pb-auth-state{display:flex;gap:12px;flex-wrap:wrap}
.pb-btn{padding:10px 14px;border-radius:10px;text-decoration:none}
.pb-btn--primary{background:#00e5ff;color:#001}
.pb-btn--accent{background:#b388ff;color:#120}
.pb-btn--danger{background:#ff4d4f;color:#200}


/* === PB CORE 1.3.1 integrated pass === */
.pb-dashboard-header{position:relative;overflow:hidden}
.pb-dashboard-header::before{
  content:"";
  position:absolute; inset:0;
  background:url('https://pixelburgh.space/wp-content/uploads/2026/03/signalarmor.png') no-repeat right center / min(42%, 420px);
  opacity:.18; pointer-events:none;
}
.pb-dashboard-header > *{position:relative; z-index:1}

.pb-auth-hero{margin:0 0 16px}
.pb-auth-hero img{
  width:100%; max-width:760px; display:block; margin:0 auto;
  border-radius:18px; border:1px solid rgba(0,255,255,.18);
  box-shadow:0 10px 40px rgba(0,0,0,.35), 0 0 24px rgba(0,255,255,.10);
}

.pb-auth-state{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.pb-auth-state .pb-btn{font-weight:900;letter-spacing:.08em}
.pb-auth-state .pb-btn--primary{
  background:linear-gradient(135deg, rgba(0,229,255,.95), rgba(122,247,255,.88));
  color:#03131a; box-shadow:0 0 22px rgba(0,194,255,.28)
}
.pb-auth-state .pb-btn--accent{
  background:linear-gradient(135deg, rgba(194,116,255,.95), rgba(255,92,214,.88));
  color:#15051c; box-shadow:0 0 22px rgba(215,76,255,.22)
}
.pb-auth-state .pb-btn--danger{
  background:linear-gradient(135deg, rgba(255,84,84,.95), rgba(255,133,133,.88));
  color:#220404; box-shadow:0 0 22px rgba(255,61,61,.22)
}

.pbpa-btn--profile-view,
.pb-profile-btn--edit,
.pbpa-btn--profile-edit{
  color:#04131b !important; font-weight:900;
  box-shadow:0 0 22px rgba(0,194,255,.18);
}
.pbpa-btn--profile-view{
  background:linear-gradient(135deg, rgba(0,229,255,.98), rgba(116,245,255,.92)) !important;
  border-color:rgba(0,229,255,.65) !important;
}
.pbpa-btn--profile-edit, .pb-profile-btn--edit{
  background:linear-gradient(135deg, rgba(201,108,255,.98), rgba(255,97,212,.92)) !important;
  border-color:rgba(214,102,255,.65) !important;
  color:#18051b !important;
}

.pb-class-switch-card .pbpa-title{margin-bottom:6px}
.pb-class-switch__intro{opacity:.86;line-height:1.45}
.pb-class-switch-grid{display:grid;grid-template-columns:1fr;gap:10px;margin-top:12px}
.pb-class-switch-option{
  position:relative;display:block;padding:14px 14px 14px 44px;border-radius:16px;
  background:rgba(255,255,255,.03);border:1px solid rgba(0,255,255,.16);cursor:pointer
}
.pb-class-switch-option input{position:absolute;left:14px;top:18px}
.pb-class-switch-option__name{display:block;font-weight:900;letter-spacing:.06em}
.pb-class-switch-option__desc{display:block;margin-top:4px;opacity:.82;font-size:13px;line-height:1.4}
.pb-class-switch-option__cost{display:block;margin-top:8px;font-size:11px;opacity:.88;letter-spacing:.06em}
.pb-class-switch-option.is-current{
  border-color:rgba(57,255,20,.40);
  box-shadow:0 0 22px rgba(57,255,20,.12);
}
@media (max-width:782px){
  .pb-dashboard-header::before{background-position:center top;background-size:contain;opacity:.14}
}


/* =========================================================
   PB CORE — GUEST PROFILE SURFACE PARITY PASS
========================================================= */
.pb-surface--profile.is-guest-view .pb-wrap,
.pb-surface--profile.is-guest-view .pb-profile-card{
  width:100%;
  max-width:100%;
}

.pb-surface--profile .pb-wrap__body{
  min-height: 56px;
}

.pb-surface--profile .pb-profile-actions--row{
  min-width: 170px;
}

.pb-profile-btn--ghostguest{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(0,255,200,.22);
  background: rgba(0,0,0,.35);
  color: rgba(230,255,245,.92);
  text-decoration:none;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 0 0 1px rgba(0,0,0,.35) inset;
}
.pb-profile-btn--ghostguest:hover{
  border-color: rgba(0,255,200,.38);
  box-shadow:0 0 18px rgba(0,255,200,.12);
}

.pb-sysmsg--guest{
  min-height:72px;
  display:flex;
  align-items:center;
}

.pb-surface--profile.is-guest-view .pb-wrap__body > :first-child{
  margin-top:0 !important;
}

.pb-surface--profile.is-guest-view .pb-wrap__body > :last-child{
  margin-bottom:0 !important;
}


/* PB CORE 1.3.2 — GUEST STYLE PARITY FIX
   Surface CSS is now enqueued early for guests and logged-in visitors alike.
*/


/* === PB CORE 1.3.3 shell + mobile tightening pass === */
.pb-shell{
  position: sticky;
  top: 0;
  z-index: 999998;
  padding: 10px 2%;
  background:
    linear-gradient(180deg, rgba(4,8,12,.96), rgba(4,8,12,.82)),
    radial-gradient(circle at top center, rgba(0,255,200,.10), transparent 55%);
  border-bottom: 1px solid rgba(0,255,200,.18);
  box-shadow: 0 10px 24px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
}
body.admin-bar .pb-shell{ top: 32px; }
@media (max-width: 782px){
  body.admin-bar .pb-shell{ top: 46px; }
}
.pb-shell__mast{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 12px;
}
.pb-shell__brand{
  justify-self:center;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration:none;
  color: #ffb100;
  text-shadow: 0 0 12px rgba(255,177,0,.22);
}
.pb-shell__status{
  justify-self:start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(230,255,245,.72);
}
.pb-shell__drawer{
  justify-self:end;
  display:none;
}
.pb-shell__drawer > summary{
  list-style:none;
  cursor:pointer;
  border:1px solid rgba(255,177,0,.24);
  border-radius: 12px;
  min-width: 48px;
  min-height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffcf49;
  background: linear-gradient(180deg, rgba(8,12,16,.92), rgba(8,12,16,.78));
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset, 0 0 18px rgba(255,177,0,.08);
}
.pb-shell__drawer > summary::-webkit-details-marker{ display:none; }
.pb-shell__nav{
  margin-top: 10px;
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;
}
.pb-shell__navlink{
  text-decoration:none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,208,82,.96);
  text-shadow: 0 0 10px rgba(255,177,0,.16);
}
.pb-shell__auth{
  margin-top: 12px;
  display:flex;
  justify-content:center;
}
.pb-shell .pb-auth-state{ justify-content:center; }
.pb-shell__drawerPanel{
  margin-top: 10px;
  padding: 14px;
  border-radius: 18px;
  border:1px solid rgba(0,255,200,.18);
  background: rgba(0,0,0,.88);
  box-shadow: 0 18px 44px rgba(0,0,0,.5);
}
.pb-shell__mobileNav{
  display:grid;
  gap: 10px;
}
.pb-shell__mobileNav .pb-shell__navlink{
  display:block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,255,200,.08);
}
.pb-shell__mobileAuth{ margin-top: 12px; }

.pb-auth-hero{ display:none !important; }

.pb-auth .pb-btn,
.pb-auth-state .pb-btn{
  color: #04131b !important;
  font-weight: 900;
  text-shadow: none !important;
}
.pb-auth .pb-btn{
  background: linear-gradient(135deg, rgba(0,229,255,.96), rgba(122,247,255,.88));
  box-shadow: 0 0 22px rgba(0,194,255,.24);
}
.pb-auth .pb-btn:hover,
.pb-auth-state .pb-btn:hover{
  transform: translateY(-1px);
}
.pb-auth-state .pb-btn--danger{
  color: #fff4f4 !important;
}

.pb-profile-cover{
  height: clamp(136px, 21vw, 220px);
  background-size: cover;
  background-position: center center;
}
.pbpa-proxy-header{
  min-height: 148px;
  aspect-ratio: 16 / 5;
}
.pbpa-proxy-header img{
  display:block;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 900px){
  .pb-shell{
    padding-left: 2%;
    padding-right: 2%;
  }
  .pb-shell__status{
    font-size: 10px;
    letter-spacing: .14em;
  }
  .pb-shell__nav,
  .pb-shell__auth{
    display:none;
  }
  .pb-shell__drawer{
    display:block;
  }
  .pb-profile-cover{
    height: 146px;
  }
  .pbpa-proxy-header{
    min-height: 132px;
    aspect-ratio: 16 / 6;
  }
}

@media (max-width: 700px){
  .site-content .ast-container,
  .ast-container,
  .ast-separate-container .ast-container,
  .ast-plain-container .ast-container,
  .entry-content,
  .site-main,
  .content-area{
    padding-left: 2% !important;
    padding-right: 2% !important;
  }

  .pb-auth,
  .pb-wrap,
  .pb-profile-card,
  .pbpa-proxy-card{
    border-radius: 16px;
  }

  .pb-auth-state,
  .pb-auth__form .pb-auth-state{
    flex-direction: column;
    align-items: stretch;
  }

  .pb-auth .pb-btn,
  .pb-auth-state .pb-btn{
    width: 100%;
    min-height: 52px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 15px;
    letter-spacing: .1em;
    line-height: 1.1;
    padding: 14px 16px;
  }

  .pb-profile-cover{
    height: 132px;
  }
  .pbpa-proxy-header{
    min-height: 120px;
    aspect-ratio: 16 / 7;
  }
}

@media (min-width: 901px){
  body.pb-shell-on{ padding-top: 0 !important; }
}


/* === PB CORE 1.3.4 mega pass 1: archive shell OS === */
:root{
  --pb-shell-h: 122px;
  --pb-shell-h-mobile: 110px;
}
body.pb-shell-on{ padding-top: var(--pb-shell-h) !important; }
body.pb-hud-on{ padding-bottom: 58px !important; }
@media (max-width: 900px){ body.pb-shell-on{ padding-top: var(--pb-shell-h-mobile) !important; } }

.pb-shell{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999998;
  padding: 8px 1.25vw 10px;
  background: linear-gradient(180deg, rgba(4,8,12,.96), rgba(4,8,12,.82));
  border-bottom: 1px solid rgba(0,255,200,.16);
  box-shadow: 0 18px 44px rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
}
body.admin-bar .pb-shell{ top: 32px; }
@media (max-width: 782px){ body.admin-bar .pb-shell{ top: 46px; } }
.pb-shell::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 25%, rgba(0,255,200,.11), transparent 42%),
    radial-gradient(circle at 82% 20%, rgba(0,170,255,.09), transparent 46%),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.03) 0px, rgba(255,255,255,.012) 1px, rgba(0,0,0,0) 3px);
  opacity:.55;
}
.pb-shell__mast{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:14px;
  width:100%;
}
.pb-shell__brandWrap{ text-decoration:none; justify-self:center; text-align:center; }
.pb-shell__brand{
  font-size: clamp(22px, 2.6vw, 38px);
  line-height:1;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:900;
  color: rgba(230,255,245,.96);
  text-shadow: 0 0 18px rgba(0,255,200,.18);
}
.pb-shell__brandSub{
  margin-top:6px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(230,255,245,.74);
}
.pb-shell__status{
  justify-self:start;
  font-size:11px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(230,255,245,.76);
}
.pb-shell__auth{ justify-self:end; display:flex; }
.pb-shell__navTape{
  position:relative;
  z-index:2;
  margin-top:10px;
  width:100%;
  border: 1px solid rgba(0,255,200,.22);
  background: rgba(0,0,0,.66);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset, 0 18px 42px rgba(0,0,0,.48), 0 0 26px rgba(0,255,200,.05);
  clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
  overflow:hidden;
}
.pb-shell__navTape::before,
.pb-wrap__tape::before,
.pb-surfaceIdentity__tape::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(0,255,200,.22), rgba(0,170,255,.09) 28%, rgba(0,0,0,0) 60%),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.025) 0px, rgba(255,255,255,.012) 1px, rgba(0,0,0,0) 3px);
  opacity:.7;
}
.pb-shell__nav{
  margin-top:0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 0;
  flex-wrap:nowrap;
  width:100%;
}
.pb-shell__navlink{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:1 1 auto;
  min-height:44px;
  padding: 0 10px;
  text-decoration:none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(230,255,245,.9);
  text-shadow:none;
}
.pb-shell__navlink + .pb-shell__navlink{ border-left:1px solid rgba(0,255,200,.14); }
.pb-shell__navlink:hover{ background: rgba(0,255,200,.06); color: rgba(255,255,255,.96); }
.pb-shell__navlink span{ display:block; transform: translateY(1px); }

.pb-shell__drawer{ display:none; justify-self:center; grid-column:1 / -1; }
.pb-shell__drawer > summary{
  list-style:none; cursor:pointer; min-height:42px; min-width:160px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(0,255,200,.22);
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  background: rgba(0,0,0,.68); color: rgba(230,255,245,.92);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset, 0 0 18px rgba(0,255,200,.06);
  font-size:11px; font-weight:900; letter-spacing:.2em; text-transform:uppercase;
}
.pb-shell__drawer > summary::-webkit-details-marker{ display:none; }
.pb-shell__drawerPanel{
  margin-top:8px; padding:0; border:none; border-radius:0; background:transparent; box-shadow:none;
}
.pb-shell__mobileNav{
  display:grid; gap:0; width:100%; border:1px solid rgba(0,255,200,.22); background: rgba(0,0,0,.8);
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  overflow:hidden;
}
.pb-shell__mobileNav .pb-shell__navlink{ min-height:46px; width:100%; }
.pb-shell__mobileNav .pb-shell__navlink + .pb-shell__navlink{ border-top:1px solid rgba(0,255,200,.12); border-left:none; }
.pb-shell__mobileAuth{ margin-top:10px; display:flex; justify-content:center; }

/* full-width tape law */
.pb-wrap__tape,
.pb-surfaceIdentity__tape,
.pb-shell__navTape{ width:100% !important; }
.pb-wrap__tape,
.pb-surfaceIdentity__tape{
  position:relative;
  min-height:42px;
  display:flex;
  align-items:center;
  padding: 0 14px;
  border-bottom:none;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}
.pb-wrap__title,
.pb-surfaceIdentity__label,
.pb-surfaceIdentity__subline{
  position:relative; z-index:1;
}

.pb-auth-state{ gap:10px; }
.pb-auth-state .pb-btn{
  min-height:42px;
  display:inline-flex; align-items:center; justify-content:center;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  border-radius:0;
}
.pb-btn--primary{ background: linear-gradient(135deg, rgba(0,238,255,.96), rgba(120,248,255,.88)); color:#03141a !important; }
.pb-btn--accent{ background: linear-gradient(135deg, rgba(255,86,204,.92), rgba(191,122,255,.88)); color:#170312 !important; }
.pb-btn--danger{ background: linear-gradient(135deg, rgba(255,83,96,.95), rgba(255,128,128,.9)); color:#fff4f4 !important; }

.pb-hud--guest .pb-hud__inner{ padding: 10px 12px; }
.pb-hud--guest .pb-hud__mid{ flex: 1 1 auto; text-align:center; }
.pb-hud--guest .pb-hud__right .pb-auth-state{ justify-content:flex-end; }
.pb-hud--guest .pb-hud__left, .pb-hud--guest .pb-hud__right{ flex:0 0 auto; }

/* near full-width surfaces */
.site-content .ast-container,
.ast-container,
.ast-separate-container .ast-container,
.ast-plain-container .ast-container,
.entry-content,
.site-main,
.content-area,
.pb-arcade,
.pb-home,
.pb-surface,
.pb-shop,
.pb-exchange,
.pb-guide,
.pb-dashboard,
.pb-profile{
  max-width: none !important;
}
.pb-arcade,
.pb-home,
.pb-shop,
.pb-guide,
.pb-exchange,
.pb-surface,
.pb-dashboard,
.pb-profile{
  padding-left: 1.25vw !important;
  padding-right: 1.25vw !important;
}

.pb-profile-cover{ height: clamp(128px, 18vw, 210px); background-size:cover; background-position:center center; }
.pbpa-proxy-header{ min-height: 136px; aspect-ratio: 16/4.8; }
.pbpa-proxy-header img{ object-fit:cover; object-position:center center; }

@media (max-width: 900px){
  .pb-shell{ padding-left: 2%; padding-right: 2%; }
  .pb-shell__mast{ grid-template-columns: 1fr; gap:8px; }
  .pb-shell__status{ justify-self:center; order:1; }
  .pb-shell__brandWrap{ order:2; }
  .pb-shell__auth,
  .pb-shell__navTape{ display:none; }
  .pb-shell__drawer{ display:block; order:3; width:100%; }
  .pb-shell__drawer > summary{ margin:0 auto; }
  .site-content .ast-container,
  .ast-container,
  .ast-separate-container .ast-container,
  .ast-plain-container .ast-container,
  .entry-content,
  .site-main,
  .content-area,
  .pb-arcade,
  .pb-home,
  .pb-surface,
  .pb-shop,
  .pb-exchange,
  .pb-guide,
  .pb-dashboard,
  .pb-profile{ padding-left:2% !important; padding-right:2% !important; }
  .pb-profile-cover{ height: 134px; }
  .pbpa-proxy-header{ min-height: 118px; aspect-ratio: 16/6; }
}
@media (max-width: 700px){
  .pb-auth-state{ width:100%; flex-wrap:wrap; }
  .pb-auth-state .pb-btn{ flex:1 1 100%; }
  .pb-hud--guest .pb-hud__inner{ gap:8px; }
  .pb-hud--guest .pb-hud__mid{ display:none; }
}


/* =========================================================
PB CORE 1.4 MOBILE STABILITY PASS
========================================================= */

:root{
 --pb-shell-offset-desktop:132px;
 --pb-shell-offset-mobile:118px;
}

body.pb-shell-active{
 padding-top:var(--pb-shell-offset-desktop);
}

@media (max-width:980px){
 body.pb-shell-active{
  padding-top:var(--pb-shell-offset-mobile);
 }
}

@media (max-width:980px){

 .ast-container,
 .site-content .ast-container,
 .content-area,
 .site-main,
 .entry-content,
 .ast-article-single,
 .ast-article-post{

  max-width:100%!important;
  width:100%!important;
  padding-left:0!important;
  padding-right:0!important;
  margin-left:0!important;
  margin-right:0!important;

 }

 .pb-wrap,
 .pb-panel,
 .pb-card,
 .pb-module{
  width:100%;
  max-width:100%;
 }

 .pb-wrap{
  padding-left:2%!important;
  padding-right:2%!important;
 }

}

@media (max-width:980px){

 .pb-shell__drawer,
 .pb-shell__mobileNav{
  text-align:center;
 }

 .pb-shell__mobileNav a{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  text-align:center;
 }

}

@media (max-width:980px){

 .pb-shell__drawer{
  left:0!important;
  right:0!important;
  width:100%!important;
  max-width:100%!important;
  box-sizing:border-box;
 }

 .pb-shell__drawer-inner{
  width:100%;
  max-width:100%;
 }

}

/* PB Core 1.5.2 — LiNK HUB styles */

.pb-linkhub__sub{margin:0 0 12px;opacity:.8}
.pb-linkhub__notice{margin:0 0 12px;padding:10px 12px;border:1px solid rgba(0,255,200,.25);border-radius:12px;background:rgba(0,255,200,.08)}
.pb-linkhub__toggle{display:flex;align-items:center;gap:10px;margin:0 0 14px}
.pb-linkhub__rows{display:flex;flex-direction:column;gap:12px}
.pb-linkhub__row{padding:12px;border:1px solid rgba(255,255,255,.08);border-radius:14px;background:rgba(255,255,255,.03)}
.pb-linkhub__fields{display:grid;grid-template-columns:1fr 1.3fr;gap:10px}
.pb-linkhub__fields input{width:100%}
.pb-linkhub__controls{display:flex;gap:8px;justify-content:flex-end;margin-top:10px;flex-wrap:wrap}
.pb-linkhub__btn{border:1px solid rgba(0,255,200,.25);background:rgba(255,255,255,.04);color:inherit;border-radius:10px;padding:8px 12px;cursor:pointer}
.pb-linkhub__btn--danger{border-color:rgba(255,80,80,.35)}
.pb-linkhub__footer{display:flex;gap:10px;margin-top:14px;flex-wrap:wrap}
@media (max-width:980px){.pb-linkhub__fields{grid-template-columns:1fr}.pb-linkhub__controls{justify-content:stretch}.pb-linkhub__controls .pb-linkhub__btn{flex:1 1 auto}}

/* PB Core 1.5.3 — Proxy Database Ranked Discovery */
.pb-dir-sub{margin:0 0 10px;opacity:.82;letter-spacing:.12em;text-transform:uppercase;font-size:11px}
.pb-dir-active{display:flex;gap:8px;flex-wrap:wrap;align-items:center;margin:10px 0 14px}
.pb-dir-active__label{font-size:11px;letter-spacing:.12em;opacity:.8;text-transform:uppercase}
.pbpa-btn--ghost{background:rgba(255,255,255,.05)!important}

/* PB Core 1.5.4 — Proxy Database UI Polish */
.pb-dir-sub{margin:0 0 10px;opacity:.82;letter-spacing:.12em;text-transform:uppercase;font-size:11px}
.pb-dir-search{display:grid;grid-template-columns:minmax(0,1fr) minmax(180px,220px) auto auto;gap:10px;align-items:center;margin-bottom:12px}
.pb-dir-search input{min-width:0}
.pb-dir-active{display:flex;gap:8px;flex-wrap:wrap;align-items:center;margin:10px 0 8px}
.pb-dir-active__label{font-size:11px;letter-spacing:.12em;opacity:.8;text-transform:uppercase}
.pb-dir-count{margin:0 0 12px;opacity:.82;font-size:12px;letter-spacing:.08em}
.pbpa-btn--ghost{background:rgba(255,255,255,.05)!important}
@media (max-width:980px){.pb-dir-search{grid-template-columns:1fr;gap:10px}.pb-dir-search .pbpa-btn,.pb-dir-search .pbpa-btn--ghost{width:100%;text-align:center;justify-content:center}.pb-dir-count{margin-top:4px}}

/* PB Core 1.5.5 — Canonical Links + Preview Thumbnails */

.pb-linkhub__sub{margin:0 0 12px;opacity:.82}
.pb-linkhub__notice{margin:0 0 12px;padding:10px 12px;border:1px solid rgba(0,255,200,.25);border-radius:12px;background:rgba(0,255,200,.08)}
.pb-linkhub__toggle{display:flex;align-items:center;gap:10px;margin:0 0 14px}
.pb-linkhub__rows{display:flex;flex-direction:column;gap:12px}
.pb-linkhub__row{padding:12px;border:1px solid rgba(255,255,255,.08);border-radius:14px;background:rgba(255,255,255,.03)}
.pb-linkhub__fields{display:grid;grid-template-columns:1fr 1.3fr;gap:10px}
.pb-linkhub__fields input{width:100%}
.pb-linkhub__meta{display:flex;align-items:center;gap:10px;margin-top:10px;min-height:34px}
.pb-linkhub__thumb{width:40px;height:40px;object-fit:cover;border-radius:10px;border:1px solid rgba(255,255,255,.12);display:block}
.pb-linkhub__status{font-size:12px;opacity:.82}
.pb-linkhub__status--missing{opacity:.68}
.pb-linkhub__controls{display:flex;gap:8px;justify-content:flex-end;margin-top:10px;flex-wrap:wrap}
.pb-linkhub__btn{border:1px solid rgba(0,255,200,.25);background:rgba(255,255,255,.04);color:inherit;border-radius:10px;padding:8px 12px;cursor:pointer}
.pb-linkhub__btn--danger{border-color:rgba(255,80,80,.35)}
.pb-linkhub__footer{display:flex;gap:10px;margin-top:14px;flex-wrap:wrap}
.pb-profile-link{display:flex;align-items:center;gap:12px}
.pb-profile-link__thumbWrap{flex:0 0 auto}
.pb-profile-link__thumb{width:46px;height:46px;object-fit:cover;border-radius:12px;border:1px solid rgba(255,255,255,.12);display:block}
.pb-profile-link__main{display:flex;flex-direction:column;min-width:0}
@media (max-width:980px){
  .pb-linkhub__fields{grid-template-columns:1fr}
  .pb-linkhub__controls{justify-content:stretch}
  .pb-linkhub__controls .pb-linkhub__btn{flex:1 1 auto}
}

/* PB Core 1.5.6 — Link System Stabilization */

.pb-linkhub__sub{margin:0 0 12px;opacity:.82}
.pb-linkhub__notice{margin:0 0 12px;padding:10px 12px;border:1px solid rgba(0,255,200,.25);border-radius:12px;background:rgba(0,255,200,.08)}
.pb-linkhub__toggle{display:flex;align-items:center;gap:10px;margin:0 0 14px}
.pb-linkhub__rows{display:flex;flex-direction:column;gap:12px}
.pb-linkhub__row{padding:12px;border:1px solid rgba(255,255,255,.08);border-radius:14px;background:rgba(255,255,255,.03)}
.pb-linkhub__fields{display:grid;grid-template-columns:1fr 1.3fr;gap:10px}
.pb-linkhub__fields input{width:100%}
.pb-linkhub__meta{display:flex;align-items:center;gap:10px;margin-top:10px;min-height:34px}
.pb-linkhub__thumb{width:40px;height:40px;object-fit:cover;border-radius:10px;border:1px solid rgba(255,255,255,.12);display:block}
.pb-linkhub__status{font-size:12px;opacity:.82}
.pb-linkhub__status--missing{opacity:.68}
.pb-linkhub__controls{display:flex;gap:8px;justify-content:flex-end;margin-top:10px;flex-wrap:wrap}
.pb-linkhub__btn{border:1px solid rgba(0,255,200,.25);background:rgba(255,255,255,.04);color:inherit;border-radius:10px;padding:8px 12px;cursor:pointer}
.pb-linkhub__btn--danger{border-color:rgba(255,80,80,.35)}
.pb-linkhub__footer{display:flex;justify-content:space-between;gap:10px;margin-top:14px;flex-wrap:wrap;align-items:center}
.pb-linkhub__footerActions{display:flex;gap:10px;flex-wrap:wrap}
.pb-linkhub__refresh{display:flex;align-items:center;gap:10px;opacity:.88}
.pb-profile-link{display:flex;align-items:center;gap:12px}
.pb-profile-link__thumbWrap{flex:0 0 auto}
.pb-profile-link__thumb{width:46px;height:46px;object-fit:cover;border-radius:12px;border:1px solid rgba(255,255,255,.12);display:block}
.pb-profile-link__main{display:flex;flex-direction:column;min-width:0}
@media (max-width:980px){
  .pb-linkhub__fields{grid-template-columns:1fr}
  .pb-linkhub__controls{justify-content:stretch}
  .pb-linkhub__controls .pb-linkhub__btn{flex:1 1 auto}
  .pb-linkhub__footer{flex-direction:column;align-items:stretch}
  .pb-linkhub__footerActions{width:100%}
  .pb-linkhub__footerActions .pb-btn{flex:1 1 auto}
}

/* PB Core 1.5.7 — Signal Node Link Cards */

.pb-signal-links{display:flex;flex-direction:column;gap:12px}
.pb-signal-link{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(95,214,255,.16);
  background:
    linear-gradient(180deg, rgba(10,14,28,.78), rgba(7,11,22,.92));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.03) inset,
    0 14px 36px rgba(0,0,0,.32);
  transition:transform .14s ease, box-shadow .14s ease, border-color .14s ease;
  text-decoration:none !important;
}
.pb-signal-link:hover{
  transform:translateY(-1px);
  border-color:rgba(95,214,255,.34);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 18px 42px rgba(0,0,0,.42),
    0 0 20px rgba(95,214,255,.10);
}
.pb-signal-link__core{
  position:relative;
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  border-radius:16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(95,214,255,.10), rgba(95,214,255,0) 62%),
    linear-gradient(180deg, rgba(18,24,46,.98), rgba(9,13,26,.98));
  box-shadow:
    0 0 0 1px rgba(95,214,255,.14) inset,
    0 0 18px rgba(95,214,255,.10);
  overflow:hidden;
}
.pb-signal-link__core::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(to bottom,
      rgba(255,255,255,.035) 0px,
      rgba(255,255,255,.015) 1px,
      rgba(0,0,0,0) 3px);
  mix-blend-mode:screen;
  opacity:.45;
}
.pb-profile-link__thumbWrap{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:12px;overflow:hidden}
.pb-profile-link__thumb{width:44px;height:44px;object-fit:cover;display:block;border-radius:12px}
.pb-profile-link__thumbWrap--fallback{
  background:linear-gradient(180deg, rgba(19,28,48,.92), rgba(10,16,30,.96));
  border:1px solid rgba(255,255,255,.08);
}
.pb-profile-link__thumbFallback{
  color:#dff8ff;
  font-weight:800;
  letter-spacing:.12em;
  font-size:16px;
}
.pb-profile-link__main{display:flex;flex-direction:column;min-width:0}
.pb-profile-link__label{
  font-size:19px;
  font-weight:800;
  letter-spacing:.06em;
  color:#eefaff;
  text-transform:uppercase;
  line-height:1.08;
}
.pb-profile-link__url{
  margin-top:5px;
  font-size:12px;
  letter-spacing:.05em;
  color:rgba(230,255,245,.62);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.pb-profile-link__badge{
  display:inline-block;
  margin-top:8px;
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(230,255,245,.76);
}
.pb-signal-link--instagram .pb-signal-link__core{box-shadow:0 0 0 1px rgba(255,100,220,.18) inset, 0 0 20px rgba(255,100,220,.12)}
.pb-signal-link--facebook .pb-signal-link__core{box-shadow:0 0 0 1px rgba(90,170,255,.18) inset, 0 0 20px rgba(90,170,255,.12)}
.pb-signal-link--spotify .pb-signal-link__core{box-shadow:0 0 0 1px rgba(70,255,180,.18) inset, 0 0 20px rgba(70,255,180,.12)}
.pb-signal-link--youtube .pb-signal-link__core{box-shadow:0 0 0 1px rgba(255,90,120,.18) inset, 0 0 20px rgba(255,90,120,.12)}
@media (max-width:980px){
  .pb-signal-link{padding:12px 13px;gap:12px}
  .pb-signal-link__core{width:52px;height:52px;border-radius:14px}
  .pb-profile-link__thumbWrap,.pb-profile-link__thumb{width:40px;height:40px}
  .pb-profile-link__label{font-size:16px}
}

/* PB Core 1.5.8 — Link Hub Module Detach */

.pb-linkhub{margin-top:0}
.pb-linkhub .pb-h{margin-bottom:8px}
.pb-linkhub__sub{margin-bottom:14px}

/* PB Core 1.5.9 — Profile Modules + Economy Visibility */
.pb-profile-console__grid2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:12px}.pb-profile-cover{background-size:cover;background-repeat:no-repeat}@media (max-width:980px){.pb-profile-console__grid2{grid-template-columns:1fr}}

/* PB Core 1.6.0 — Profile + Registration Fixes (corrected) */

.pb-auth__form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 18px;align-items:start}
.pb-auth__form > .pb-auth__field--full,
.pb-auth__form > .pb-auth__check,
.pb-auth__form > button{grid-column:1/-1}
.pb-auth__form > label{display:flex;flex-direction:column;gap:8px;min-width:0}
.pb-auth__pw{padding-left:8px}
.pb-auth__form input[type="file"]{display:block;width:100%}
.pb-classgrid{margin-top:8px}
.pb-classcard{grid-template-columns:1fr;gap:10px;min-height:320px;align-content:start;padding:14px}
.pb-classcard__img{min-height:220px;overflow:hidden;background:rgba(0,0,0,.5)}
.pb-classcard__img img{width:100%;height:100%;display:block;object-fit:cover}
.pb-classcard__name{font-size:20px;letter-spacing:.08em;margin-top:2px}
.pb-classcard__desc{font-size:13px;line-height:1.5;max-width:32ch}
@media (max-width:900px){
  .pb-auth__form{grid-template-columns:1fr}
  .pb-auth__form > .pb-auth__field--full,
  .pb-auth__form > .pb-auth__check,
  .pb-auth__form > button{grid-column:auto}
  .pb-auth__pw{padding-left:0}
}

/* PB Core 1.6.1 — hard refresh build */

.pb-auth__form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 18px;align-items:start}
.pb-auth__form > .pb-auth__field--full,
.pb-auth__form > .pb-auth__check,
.pb-auth__form > button{grid-column:1/-1}
.pb-auth__form > label{display:flex;flex-direction:column;gap:8px;min-width:0}
.pb-auth__pw{padding-left:8px}
.pb-auth__form input[type="file"]{display:block;width:100%}
.pb-classgrid{margin-top:8px}
.pb-classcard{grid-template-columns:1fr;gap:10px;min-height:320px;align-content:start;padding:14px}
.pb-classcard__img{min-height:220px;overflow:hidden;background:rgba(0,0,0,.5)}
.pb-classcard__img img{width:100%;height:100%;display:block;object-fit:cover}
.pb-classcard__name{font-size:20px;letter-spacing:.08em;margin-top:2px}
.pb-classcard__desc{font-size:13px;line-height:1.5;max-width:32ch}
@media (max-width:900px){
  .pb-auth__form{grid-template-columns:1fr}
  .pb-auth__form > .pb-auth__field--full,
  .pb-auth__form > .pb-auth__check,
  .pb-auth__form > button{grid-column:auto}
  .pb-auth__pw{padding-left:0}
}


/* PB Core 1.6.1d — Registration tile normalization */
.pb-auth__form input[type="file"]{padding:10px 12px;}
.pb-classgrid{
  margin-top:8px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,320px));
  gap:14px;
  justify-content:start;
}
.pb-classcard{
  grid-template-columns:1fr !important;
  gap:10px !important;
  width:100%;
  max-width:320px;
  min-height:0 !important;
  align-content:start;
  padding:14px !important;
}
.pb-classcard__img{
  width:100%;
  max-width:320px;
  min-height:0 !important;
  aspect-ratio:16 / 10;
  overflow:hidden;
  background:rgba(0,0,0,.5);
}
.pb-classcard__img img{width:100%;height:100%;display:block;object-fit:cover;}
.pb-classcard__name{font-size:18px !important;letter-spacing:.08em;margin-top:2px;}
.pb-classcard__desc{font-size:13px !important;line-height:1.5;max-width:32ch;}
@media (max-width: 640px){
  .pb-classgrid{grid-template-columns:1fr;justify-content:stretch;}
  .pb-classcard{max-width:320px;}
  .pb-classcard__img{max-width:320px;}
}


/* PB Core — Referrals */
.pb-referral-center__sub{margin:0 0 14px;opacity:.82}
.pb-referral-center__grid{display:grid;grid-template-columns:1.35fr 1fr 1fr;gap:12px;margin:0 0 14px}
.pb-referral-card{padding:14px;border:1px solid rgba(255,255,255,.10);border-radius:16px;background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));box-shadow:0 12px 30px rgba(0,0,0,.18)}
.pb-referral-card__eyebrow{font-size:11px;letter-spacing:.16em;opacity:.72}
.pb-referral-card__code{font-size:24px;font-weight:950;letter-spacing:.08em;color:#9afcff;margin-top:6px}
.pb-referral-card__metric{font-size:26px;font-weight:950;letter-spacing:.04em;margin-top:8px}
.pb-referral-card__small{margin-top:8px;font-size:12px;opacity:.7;word-break:break-word}
.pb-referral-links{display:grid;gap:10px;margin:0 0 14px}
.pb-referral-linkrow{padding:12px;border:1px solid rgba(0,255,200,.18);border-radius:14px;background:rgba(0,0,0,.18)}
.pb-referral-linkrow__label{font-size:11px;letter-spacing:.14em;opacity:.72;margin:0 0 6px}
.pb-referral-linkrow input{width:100%;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:10px;color:inherit;padding:10px 12px}
.pb-referral-sources{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 14px}
.pb-referral-sourcechip{padding:7px 10px;border-radius:999px;border:1px solid rgba(120,255,255,.22);background:rgba(120,255,255,.08);font-size:12px}
.pb-referral-log{border:1px solid rgba(255,255,255,.08);border-radius:16px;background:rgba(255,255,255,.03);overflow:hidden}
.pb-referral-log__head{padding:12px 14px;border-bottom:1px solid rgba(255,255,255,.08);font-weight:900;letter-spacing:.08em}
.pb-referral-log__row{display:grid;grid-template-columns:1fr 110px 1.2fr 1fr 160px;gap:10px;padding:12px 14px;border-top:1px solid rgba(255,255,255,.06);align-items:center;font-size:13px}
.pb-referral-log__row:first-of-type{border-top:0}
.pb-referral-log__empty{padding:14px;opacity:.72}
@media (max-width:980px){.pb-referral-center__grid{grid-template-columns:1fr}.pb-referral-log__row{grid-template-columns:1fr 1fr}.pb-referral-log__row span:last-child{grid-column:1/-1}}


/* PB Core 1.6.3z — Final shell/auth refinement */
.pb-auth__notice{
  margin: 12px 18px 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(28,246,255,.18);
  background: linear-gradient(180deg, rgba(28,246,255,.10), rgba(28,246,255,.04));
  color: rgba(238,250,255,.96);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}
.pb-auth__notice a{ color: #9df7ff; font-weight: 900; }
.pb-auth__notice--err{
  border-color: rgba(255,107,127,.24);
  background: linear-gradient(180deg, rgba(255,107,127,.14), rgba(255,107,127,.05));
  color: rgba(255,238,240,.96);
}

.pb-shell__navTape{
  border-color: rgba(0,255,200,.26);
  background: linear-gradient(180deg, rgba(6,12,16,.84), rgba(3,7,12,.84));
  box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset, 0 20px 48px rgba(0,0,0,.54), 0 0 28px rgba(0,255,200,.07);
}
.pb-shell__navTape::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,0) 18%, rgba(255,255,255,.04) 80%, rgba(255,255,255,0));
  opacity:.22;
}
.pb-shell__nav{ gap: 0; }
.pb-shell__navlink{
  min-height: 46px;
  padding: 0 12px;
  letter-spacing: .16em;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.pb-shell__navlink::before{
  content:"";
  position:absolute;
  inset: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.035);
  opacity: 0;
  transition: opacity .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.pb-shell__navlink:hover,
.pb-shell__navlink.is-current{
  background: linear-gradient(180deg, rgba(0,255,200,.10), rgba(0,170,255,.06));
  color: rgba(255,255,255,.98);
}
.pb-shell__navlink:hover::before,
.pb-shell__navlink.is-current::before{
  opacity: 1;
  border-color: rgba(0,255,200,.18);
  box-shadow: 0 0 18px rgba(0,255,200,.08);
}
.pb-shell__navlink:hover{ transform: translateY(-1px); }
.pb-shell__navlink.is-current span{ text-shadow: 0 0 12px rgba(0,255,200,.22); }
.pb-shell__navlink--external span::after{ content:" ↗"; opacity:.55; }
.pb-shell__drawer > summary{
  box-shadow: 0 0 0 1px rgba(255,255,255,.035) inset, 0 0 18px rgba(0,255,200,.06), 0 14px 32px rgba(0,0,0,.34);
}
.pb-shell__drawerPanel{ margin-top: 10px; }
.pb-shell__mobileNav{
  background: linear-gradient(180deg, rgba(3,8,12,.92), rgba(3,8,12,.78));
  box-shadow: 0 16px 34px rgba(0,0,0,.34), 0 0 0 1px rgba(255,255,255,.025) inset;
}
.pb-shell__mobileNav .pb-shell__navlink{
  min-height: 48px;
  justify-content: flex-start;
  padding: 0 16px;
}
.pb-shell__mobileAuth{ margin-top: 12px; }
.pb-hud--guest .pb-hud__right{ min-width: 120px; }
@media (max-width: 900px){
  .pb-shell__drawer > summary{ width: 100%; max-width: 420px; }
}

/* PB NAV BRAND / SUBLABEL / ACTIVE STATE PATCH */
.pb-shell__brand{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.pb-shell__brandImg{
  display:inline-block;
  height: clamp(28px, 4vw, 48px);
  width:auto;
  max-width:none;
  vertical-align:middle;
  filter: drop-shadow(0 0 6px rgba(255, 100, 0, 0.35));
}
.pb-shell__brandSub{
  white-space: nowrap;
  font-size: clamp(8px, 1.15vw, 12px);
  letter-spacing:.12em;
  background-image: linear-gradient(90deg, #00eaff, #00ffc6, #7a5cff, #ff4fd8, #00eaff);
  background-size: 300% 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 6px rgba(0, 234, 255, 0.25), 0 0 12px rgba(122, 92, 255, 0.18);
  animation: pb-rainbow-flow 6s linear infinite;
}
@keyframes pb-rainbow-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.pb-shell__navlink.is-current,
.pb-shell__navlink[aria-current="page"] {
  position: relative;
  background: linear-gradient(90deg, rgba(0,234,255,.16), rgba(255,79,216,.14));
  color: #eaffff;
  box-shadow: 0 0 10px rgba(0,234,255,.22), 0 0 18px rgba(122,92,255,.16), inset 0 0 0 1px rgba(255,255,255,.06);
  animation: pb-nav-active-pulse 2.6s ease-in-out infinite;
}
.pb-shell__navlink.is-current::after,
.pb-shell__navlink[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00eaff, #7a5cff, #ff4fd8);
  box-shadow: 0 0 8px rgba(0,234,255,.45);
}
@keyframes pb-nav-active-pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0,234,255,.22), 0 0 18px rgba(122,92,255,.16), inset 0 0 0 1px rgba(255,255,255,.06);
  }
  50% {
    box-shadow: 0 0 16px rgba(0,234,255,.34), 0 0 24px rgba(255,79,216,.22), inset 0 0 0 1px rgba(255,255,255,.1);
  }
}
@media (max-width: 768px){
  .pb-shell__brandImg{
    height: clamp(24px, 7vw, 34px);
  }
  .pb-shell__brandSub{
    white-space: nowrap;
    font-size: clamp(8px, 1.9vw, 11px);
    letter-spacing:.08em;
    background-image: linear-gradient(90deg, #00eaff, #00ffc6, #7a5cff, #ff4fd8, #00eaff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: pb-rainbow-flow 6s linear infinite;
  }
}


body:not(.admin-bar) .pb-shell{ top:0 !important; }
html body.admin-bar .pb-shell{ margin-top:0 !important; }
#wpadminbar{ z-index:9999999; }

.pb-referral-node{ position:relative; overflow:hidden; }
.pb-referral-node::before{ content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 12% 18%, rgba(0,255,200,.08), transparent 35%), radial-gradient(circle at 88% 18%, rgba(180,90,255,.08), transparent 30%); }
.pb-referral-node__lead{ opacity:.82; margin-bottom:12px; }
.pb-referral-node__grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
.pb-referral-node__panel,.pb-referral-node__urlwrap{ position:relative; z-index:1; padding:12px 14px; border:1px solid rgba(0,255,200,.16); border-radius:14px; background:rgba(255,255,255,.03); }
.pb-referral-node__eyebrow{ font-size:11px; letter-spacing:.14em; opacity:.72; margin-bottom:6px; }
.pb-referral-node__code{ font-size:24px; font-weight:900; letter-spacing:.12em; word-break:break-word; }
.pb-referral-node__stats{ font-size:15px; font-weight:800; letter-spacing:.06em; }
.pb-referral-node__url{ font-size:13px; line-height:1.45; word-break:break-all; opacity:.94; }
.pb-referral-node__actions{ position:relative; z-index:1; display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.pb-referral-node__btn{ min-width:150px; }
.pb-referral-node__hint{ position:relative; z-index:1; margin-top:10px; opacity:.68; font-size:12px; }
@media (max-width:700px){ .pb-referral-node__grid{ grid-template-columns:1fr; } .pb-referral-node__btn{ width:100%; } }


/* ===== Profile Share Bars ===== */
.pb-profile-share{
  position:relative;
  overflow:hidden;
  margin:14px 0;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(0,255,200,.20);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    radial-gradient(circle at top right, rgba(255,0,200,.14), transparent 42%),
    radial-gradient(circle at bottom left, rgba(0,255,200,.12), transparent 46%),
    rgba(6,10,18,.92);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.03) inset,
    0 18px 60px rgba(0,0,0,.34),
    0 0 28px rgba(0,255,200,.08);
}
.pb-profile-share::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:repeating-linear-gradient(180deg, rgba(255,255,255,.028) 0 1px, transparent 1px 4px);
  opacity:.28;
  mix-blend-mode:screen;
}
.pb-profile-share__head{
  position:relative; z-index:1;
  display:flex; align-items:flex-end; justify-content:space-between; gap:10px;
  margin-bottom:12px;
}
.pb-profile-share__eyebrow{
  font-size:11px; font-weight:900; letter-spacing:.22em;
  color:#8efbe8;
  text-shadow:0 0 12px rgba(0,255,200,.25);
}
.pb-profile-share__sub{
  font-size:12px; color:rgba(230,255,245,.76); max-width:520px;
}
.pb-profile-share__actions{
  position:relative; z-index:1;
  display:flex; flex-wrap:wrap; gap:10px;
}
.pb-profile-share__btn{
  appearance:none; border:none; text-decoration:none; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  min-height:42px; padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color:#f3fffb; font-weight:900; letter-spacing:.08em; font-size:12px;
  box-shadow:0 0 0 1px rgba(0,0,0,.2) inset, 0 10px 28px rgba(0,0,0,.24);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
}
.pb-profile-share__btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,.34), 0 0 24px rgba(0,255,200,.12);
  filter:brightness(1.05);
}
.pb-profile-share__btn--copy{ border-color:rgba(0,255,200,.28); box-shadow:0 0 0 1px rgba(0,255,200,.14) inset, 0 10px 28px rgba(0,0,0,.24), 0 0 20px rgba(0,255,200,.10); }
.pb-profile-share__btn--facebook{ border-color:rgba(80,150,255,.26); box-shadow:0 0 0 1px rgba(80,150,255,.12) inset, 0 10px 28px rgba(0,0,0,.24), 0 0 20px rgba(80,150,255,.10); }
.pb-profile-share__btn--messenger{ border-color:rgba(178,88,255,.26); box-shadow:0 0 0 1px rgba(178,88,255,.12) inset, 0 10px 28px rgba(0,0,0,.24), 0 0 20px rgba(178,88,255,.10); }
.pb-profile-share__btn--x{ border-color:rgba(255,255,255,.20); }
.pb-profile-share__btn--email{ border-color:rgba(255,176,80,.26); box-shadow:0 0 0 1px rgba(255,176,80,.12) inset, 0 10px 28px rgba(0,0,0,.24), 0 0 20px rgba(255,176,80,.10); }
.pb-profile-share__icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:22px; height:22px; border-radius:999px;
  background:rgba(255,255,255,.08); font-size:13px; line-height:1;
  box-shadow:0 0 0 1px rgba(255,255,255,.08) inset;
}
.pb-surface .pb-profile-share{ margin:0; }
@media (max-width: 640px){
  .pb-profile-share{ padding:12px; border-radius:16px; }
  .pb-profile-share__head{ display:block; }
  .pb-profile-share__sub{ margin-top:6px; }
  .pb-profile-share__actions{ gap:8px; }
  .pb-profile-share__btn{ flex:1 1 calc(50% - 8px); min-width:0; padding:10px 10px; font-size:11px; letter-spacing:.06em; }
}
