/* ============================================================
   GP – Gamer Profession | Design System v3
   Basado en el logo oficial:
   Púrpura #8B5CF6 (lado gamer) · Cyan #00D4FF (lado pro)
   Fondo negro puro · Plata metálica en tipografía
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&family=JetBrains+Mono:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Fondos — negros puros como en el logo */
  --black:     #000000;
  --void:      #03030a;
  --deep:      #06060f;
  --surface:   #08080f;
  --elevated:  #0d0d18;
  --overlay:   #111120;
  --border:    #1a1a2e;
  --muted:     #2a2a48;

  /* PURPLE — lado gamer (color dominante del logo) */
  --purple:      #8B5CF6;
  --purple-lt:   #A78BFA;
  --purple-dim:  #6D28D9;
  --purple-glow: rgba(139,92,246,0.20);
  --purple-faint:rgba(139,92,246,0.07);
  --purple-deep: rgba(139,92,246,0.03);

  /* CYAN — lado profesional */
  --cyan:      #00D4FF;
  --cyan-lt:   #33DDFF;
  --cyan-dim:  #0099CC;
  --cyan-glow: rgba(0,212,255,0.18);
  --cyan-faint:rgba(0,212,255,0.06);

  /* GOLD — GP Coin (acento secundario) */
  --gold:      #F0B429;
  --gold-lt:   #FFD166;
  --gold-dim:  #C4911A;
  --gold-glow: rgba(240,180,41,0.15);
  --gold-faint:rgba(240,180,41,0.06);

  /* Colores de estado */
  --green:   #00E676;
  --red:     #FF3D57;

  /* Plata metálica (texto del logo) */
  --silver:      #C0C0D0;
  --silver-dim:  #909090;

  /* Texto */
  --t1: #F0F0FF;
  --t2: #9090B8;
  --t3: #50507A;

  /* Tipografía */
  --display: 'Syne', sans-serif;
  --ui:      'Rajdhani', sans-serif;
  --mono:    'JetBrains Mono', monospace;

  /* Radios */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --pill:  100px;

  /* Transiciones */
  --t-fast:   150ms ease;
  --t-normal: 250ms ease;

  /* Gradiente signature del logo */
  --grad-gp:      linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
  --grad-gp-rev:  linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  --grad-gp-text: linear-gradient(135deg, #A78BFA 0%, #00D4FF 100%);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

body {
  background: var(--black);
  color: var(--t1);
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Fondo de puntos de grilla (sutil, como en el logo) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
    /* grid sutil sobre negro puro */
  background-image:
    linear-gradient(rgba(139,92,246,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: -1;
}



::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--void); }
::-webkit-scrollbar-thumb { background:var(--purple-dim); border-radius:var(--pill); }
::selection { background:var(--purple-faint); color:var(--purple-lt); }

/* ── Tipografía ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family:var(--display); font-weight:700; line-height:1.1; }

/* Texto gradiente signature */
.gp-text {
  background: var(--grad-gp-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t3);
}

/* ── Layout ────────────────────────────────────────────────── */
.container    { max-width:1280px; margin:0 auto; padding:0 24px; }
.container-sm { max-width:720px;  margin:0 auto; padding:0 24px; }

.app-shell {
  display: grid;
  grid-template-columns: 210px 1fr;
  grid-template-rows: 60px 1fr;
  min-height: 100vh;
}

.main-content {
  grid-column: 2;
  grid-row: 2;
  padding: 28px 32px;
  overflow-y: auto;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  grid-column: 1 / -1;
  grid-row: 1;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  /* Borde inferior con gradiente GP */
  border-bottom: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 1px 0 0 rgba(139,92,246,0.3), 0 1px 0 0 rgba(0,212,255,0.1);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  height: 60px;
}

.nav-logo {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  background: var(--grad-gp-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-search {
  flex: 1;
  max-width: 340px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px 14px 8px 36px;
  color: var(--t1);
  font-family: var(--ui);
  font-size: 13px;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
    /* grid sutil sobre negro puro */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2350507A' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
}

.nav-search:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-faint);
}

.nav-search::placeholder { color:var(--t3); }

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Wallet pill — con acento GP */
.wallet-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-faint);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--pill);
  padding: 5px 14px 5px 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple-lt);
  text-decoration: none;
  transition: all var(--t-fast);
  cursor: pointer;
}

.wallet-pill:hover { background:var(--purple-glow); border-color:var(--purple); }

.wallet-dot {
  width: 7px; height: 7px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--purple);
}

.nav-btn {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; align-items:center; justify-content:center;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
  color: var(--t1);
  position: relative;
}

.nav-btn:hover { border-color:var(--purple); box-shadow:0 0 8px var(--purple-faint); }

.nav-btn .badge {
  position: absolute;
  top: 5px; right: 5px;
  width: 16px; height: 16px;
  background: var(--red);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 9px;
  color: #fff;
  display: flex; align-items:center; justify-content:center;
  border: 2px solid var(--black);
}

.nav-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad-gp);
  border: 2px solid rgba(139,92,246,0.4);
  display: flex; align-items:center; justify-content:center;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-fast);
}

.nav-avatar:hover { border-color:var(--purple); box-shadow:0 0 12px var(--purple-glow); }

/* ── Sidebar ───────────────────────────────────────────────── */
.sidebar {
  grid-column: 1;
  grid-row: 2;
  background: var(--void);
  border-right: 1px solid var(--border);
  padding: 16px 10px;
  overflow-y: auto;
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  z-index: 50;
}

.sidebar-section {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t3);
  padding: 10px 10px 4px;
  margin-top: 6px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r-md);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  transition: all var(--t-fast);
  margin-bottom: 2px;
  border: 1px solid transparent;
}

.sidebar-item:hover { background:var(--elevated); color:var(--t1); }

.sidebar-item.active {
  background: var(--purple-faint);
  color: var(--purple-lt);
  border-color: rgba(139,92,246,0.2);
}

.sidebar-icon { font-size:15px; width:18px; text-align:center; flex-shrink:0; }
.sidebar-label { flex:1; }

.sidebar-badge {
  margin-left: auto;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  padding: 1px 6px;
  border-radius: var(--pill);
}

/* ── Botones ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-md);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform:scale(0.97); }

/* Primario — gradiente GP */
.btn-primary {
  background: var(--grad-gp);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(139,92,246,0.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(139,92,246,0.5);
  transform: translateY(-1px);
}

/* Secundario — outline purple */
.btn-secondary {
  background: transparent;
  color: var(--purple-lt);
  border: 1px solid var(--purple);
  box-shadow: 0 0 0 0 var(--purple-faint);
}
.btn-secondary:hover {
  background: var(--purple-faint);
  box-shadow: 0 0 16px var(--purple-faint);
}

/* Ghost */
.btn-ghost {
  background: var(--elevated);
  color: var(--t1);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color:var(--muted); background:var(--overlay); }

/* Cyan (para calls-to-action profesionales) */
.btn-cyan {
  background: var(--cyan);
  color: var(--black);
  font-weight: 800;
}
.btn-cyan:hover { background:var(--cyan-lt); box-shadow:0 4px 20px var(--cyan-glow); }

/* Gold (GP Coin) */
.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
}
.btn-gold:hover { background:var(--gold-lt); }

.btn-danger { background:transparent; color:var(--red); border:1px solid var(--red); }
.btn-danger:hover { background:rgba(255,61,87,0.08); }

.btn-sm  { padding:6px 14px; font-size:12px; }
.btn-lg  { padding:14px 28px; font-size:15px; }
.btn-xl  { padding:16px 36px; font-size:17px; }
.btn-full{ width:100%; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
}

/* Card con borde GP (gradiente) */
.card-gp {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 20px;
  position: relative;
}

.card-gp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: var(--grad-gp);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.card-purple {
  background: var(--surface);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: 0 0 24px var(--purple-faint);
}

.card-cyan {
  background: var(--surface);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: 0 0 24px var(--cyan-faint);
}

.card-hover {
  transition: all var(--t-normal);
  cursor: pointer;
}

.card-hover:hover {
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--purple-faint);
}

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--pill);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-purple { background:var(--purple-faint); color:var(--purple-lt);  border:1px solid rgba(139,92,246,0.3); }
.badge-cyan   { background:var(--cyan-faint);   color:var(--cyan);       border:1px solid rgba(0,212,255,0.25); }
.badge-gold   { background:var(--gold-faint);   color:var(--gold);       border:1px solid rgba(240,180,41,0.25); }
.badge-green  { background:rgba(0,230,118,0.07);color:var(--green);      border:1px solid rgba(0,230,118,0.2); }
.badge-red    { background:rgba(255,61,87,0.07);color:var(--red);        border:1px solid rgba(255,61,87,0.2); }
.badge-muted  { background:var(--elevated);     color:var(--t2);         border:1px solid var(--border); }
.badge-live   { background:var(--cyan-faint); color:var(--cyan); border:1px solid rgba(0,212,255,0.25); animation:blink 1.5s infinite; }
.badge-gp {
  background: var(--grad-gp);
  color: #fff;
  border: none;
  font-weight: 700;
}

/* Tipos de usuario */
.badge-retador   { background:var(--purple-faint); color:var(--purple-lt);  border:1px solid rgba(139,92,246,0.3); }
.badge-sponsor   { background:rgba(240,180,41,0.07); color:var(--gold);     border:1px solid rgba(240,180,41,0.25); }
.badge-inversor  { background:var(--cyan-faint);   color:var(--cyan);       border:1px solid rgba(0,212,255,0.25); }
.badge-espectador{ background:rgba(0,230,118,0.07);color:var(--green);      border:1px solid rgba(0,230,118,0.2); }

/* ── Inputs ────────────────────────────────────────────────── */
.input {
  width: 100%;
  background: var(--void);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--t1);
  font-family: var(--ui);
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}

.input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-faint);
}

.input::placeholder { color:var(--t3); }

.input-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 6px;
}

.input-group { margin-bottom:16px; }

/* ── Dividers ──────────────────────────────────────────────── */
.divider      { height:1px; background:var(--border); border:none; margin:24px 0; }

/* Divider GP (gradiente del logo) */
.divider-gp {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
  border: none;
  margin: 24px 0;
  opacity: 0.4;
}

/* ── Avatar ────────────────────────────────────────────────── */
.avatar {
  border-radius: 50%;
  background: var(--grad-gp);
  border: 2px solid rgba(139,92,246,0.4);
  display: flex; align-items:center; justify-content:center;
  font-family: var(--display);
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.avatar-sm  { width:32px; height:32px; font-size:11px; }
.avatar-md  { width:44px; height:44px; font-size:15px; }
.avatar-lg  { width:64px; height:64px; font-size:22px; }
.avatar-xl  { width:96px; height:96px; font-size:34px; }

/* ── Stat cards ────────────────────────────────────────────── */
.stat-card {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
}

.stat-label { font-family:var(--mono); font-size:9px; letter-spacing:0.15em; text-transform:uppercase; color:var(--t3); margin-bottom:6px; }
.stat-value { font-family:var(--display); font-size:28px; font-weight:700; color:var(--purple-lt); line-height:1; }
.stat-sub   { font-family:var(--mono); font-size:10px; color:var(--t3); margin-top:4px; }

/* ── Grid utils ────────────────────────────────────────────── */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }

/* ── Gamery FAB ────────────────────────────────────────────── */
.gamery-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 400;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--grad-gp);
  border: none;
  cursor: pointer;
  display: flex; align-items:center; justify-content:center;
  font-size: 22px;
  box-shadow: 0 0 0 4px var(--purple-faint), 0 8px 24px rgba(139,92,246,0.4);
  transition: all var(--t-normal);
}

.gamery-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px var(--purple-faint), 0 12px 32px rgba(139,92,246,0.6);
}

.gamery-fab-pulse {
  position: absolute; inset:-4px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  opacity: 0.4;
  animation: ring-pulse 2s infinite;
}

/* ── Ticker ────────────────────────────────────────────────── */
.ticker-bar {
  background: var(--void);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticker-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-lt);
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 20px;
}

.ticker-track { overflow:hidden; flex:1; }
.ticker-items {
  display: flex; gap:28px;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker-item  { display:flex; align-items:center; gap:8px; white-space:nowrap; }
.ticker-name  { font-family:var(--ui); font-size:11px; font-weight:600; color:var(--t2); }
.ticker-price { font-family:var(--mono); font-size:11px; color:var(--purple-lt); }
.ticker-up    { font-family:var(--mono); font-size:10px; color:var(--green); }
.ticker-dn    { font-family:var(--mono); font-size:10px; color:var(--red); }
.ticker-sep   { color:var(--border); }

/* ── Toast ─────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 76px; right: 20px;
  z-index: 500;
  display: flex; flex-direction:column; gap:8px;
}

.toast {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 12px 18px;
  font-family: var(--ui);
  font-size: 13px;
  color: var(--t1);
  display: flex; align-items:center; gap:10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: slide-up 0.3s ease;
  min-width: 260px;
}

.toast.success { border-color:rgba(0,230,118,0.3); }
.toast.error   { border-color:rgba(255,61,87,0.3); }
.toast.info    { border-color:rgba(139,92,246,0.3); }

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset:0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex; align-items:center; justify-content:center;
  padding: 20px;
}

.modal {
  background: var(--surface);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--r-xl);
  padding: 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(139,92,246,0.15);
  animation: slide-up 0.3s ease;
}

/* ── Loading ───────────────────────────────────────────────── */
.loading-spinner {
  width: 36px; height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ── Animaciones ───────────────────────────────────────────── */
@keyframes blink      { 0%,100%{opacity:1} 50%{opacity:0.2} }
@keyframes ring-pulse { 0%,100%{transform:scale(1);opacity:0.4} 50%{transform:scale(1.2);opacity:0} }
@keyframes ticker     { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes fade-in    { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
@keyframes slide-up   { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes spin       { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes gp-glow    {
  0%,100% { box-shadow: 0 0 20px var(--purple-faint), 0 0 40px rgba(0,212,255,0.05); }
  50%     { box-shadow: 0 0 40px var(--purple-glow),  0 0 80px rgba(0,212,255,0.1); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.fade-in  { animation: fade-in  0.3s ease forwards; }
.slide-up { animation: slide-up 0.4s ease forwards; }
.glow-gp  { animation: gp-glow 3s ease infinite; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .app-shell { grid-template-columns:1fr; }
  .sidebar   { display:none; }
  .main-content { grid-column:1; padding:16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns:1fr; }
}

/* ── Utilidades ────────────────────────────────────────────── */
.flex          { display:flex; }
.flex-col      { display:flex; flex-direction:column; }
.items-center  { align-items:center; }
.justify-between { justify-content:space-between; }
.gap-2 { gap:8px; }   .gap-3 { gap:12px; }  .gap-4 { gap:16px; }
.mt-2 { margin-top:8px; }  .mt-4 { margin-top:16px; } .mt-6 { margin-top:24px; }
.mb-2 { margin-bottom:8px; }.mb-4 { margin-bottom:16px; }

.text-purple  { color:var(--purple-lt) !important; }
.text-cyan    { color:var(--cyan) !important; }
.text-gold    { color:var(--gold) !important; }
.text-green   { color:var(--green) !important; }
.text-red     { color:var(--red) !important; }
.text-muted   { color:var(--t2) !important; }
.text-faint   { color:var(--t3) !important; }
.text-center  { text-align:center; }
.font-mono    { font-family:var(--mono); }
.font-display { font-family:var(--display); }
.hidden       { display:none !important; }
.w-full       { width:100%; }