/* Public site base styles — used by hall-of-fame, top-chatters, points-store-shop, supporter-profile */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #090912;
  --surface: rgba(255,255,255,0.04);
  --surface-hv: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --text: #e2e8f0;
  --muted: #8494a1;
  --neon: #00d4ff;
  --neon-glow: rgba(0,212,255,0.35);
  --purple: #8b5cf6;
  --green: #10b981;
  --gold: #fbbf24;
  --red: #f87171;
  --r: 10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  line-height: 1.5;
}

a { color: var(--neon); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Public nav ── */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,9,18,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-icon { height: 32px; width: auto; filter: drop-shadow(0 0 5px var(--neon-glow)); }

.nav-brand-name {
  font-size: 16px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 99px;
  transition: all .15s;
  text-decoration: none;
}

.nav-links a:hover { color: var(--text); background: var(--surface-hv); }
.nav-links a.active { color: var(--neon); background: rgba(0,212,255,0.08); }

.nav-links .btn-login {
  color: #05050a;
  background: linear-gradient(135deg, var(--neon), var(--purple));
  padding: 5px 14px;
  border-radius: 99px;
  font-weight: 700;
}

/* ── Shared layout helpers ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 40px 0; }
