/* ══════════════ Punks — Common Variables & Reset ══════════════ */

:root {
  /* Primary: glass blue */
  --blue: #1a9fd4;
  --blue-bright: #40c4ff;
  --blue-glass: rgba(26,159,212,0.12);
  --blue-border: rgba(26,159,212,0.25);
  --blue-glow: rgba(26,159,212,0.4);
  /* Accent: yellow — hero punk + key highlights only */
  --yellow: #ffe234;
  --yellow-glow: rgba(255,226,52,0.5);
  /* Neutrals */
  --cyan: #00e5ff;
  --green: #00ff88;
  --magenta: #ff2d78;
  --dark: #060b12;
  --panel: #0b1522;
  --panel2: #0e1c30;
  --glass: rgba(14,28,48,0.7);
  --text: #c8d8e8;
  --text-dim: rgba(200,216,232,0.45);
  --border: rgba(26,159,212,0.18);
  /* Layout (used by index.php; harmless if loaded on punk.php) */
  --nav-height: 73px;
  --ticker-height: 40px;
  --header-total: calc(var(--nav-height) + var(--ticker-height));
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
body { -webkit-user-select:none; user-select:none }
#wp-address { -webkit-user-select:text; user-select:text }
html { scroll-behavior:smooth }
