/* Prestige Center Icon System */
:root{
  --pc-blue:#3B82F6;
  --pc-indigo:#6366F1;
  --pc-green:#10B981;
  --pc-red:#EF4444;
  --pc-orange:#F97316;
  --pc-purple:#8B5CF6;
  --pc-dark:#0F172A;
}

/* inline SVG sizing */
.pc-icon{
  width:24px;
  height:24px;
  display:inline-block;
  vertical-align:middle;
  transition: transform .18s ease, filter .18s ease;
}
.pc-icon.is-28{ width:28px; height:28px; }
.pc-icon.is-32{ width:32px; height:32px; }
.pc-icon:hover{
  transform: translateY(-1px) scale(1.08);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.18));
}

/* Glass buttons: subtle background */
.pc-iconbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
  backdrop-filter: blur(10px);
}
.dark .pc-iconbtn{
  background: rgba(2,6,23,.35);
  border-color: rgba(148,163,184,.14);
}

/* Live pulse */
.pc-live-icon{ width:28px; height:28px; display:inline-block; }
.pc-pulse-dot{ transform-origin: 24px 24px; animation: pcDot 1.25s ease-in-out infinite; }
.pc-pulse-ring{ transform-origin: 24px 24px; animation: pcRing 1.25s ease-out infinite; }

@keyframes pcDot{
  0%,100%{ transform: scale(1); opacity:1; }
  50%{ transform: scale(1.15); opacity:.92; }
}
@keyframes pcRing{
  0%{ transform: scale(.85); opacity:.55; }
  70%{ transform: scale(1.55); opacity:0; }
  100%{ transform: scale(1.55); opacity:0; }
}
