/* ============================================================
   Rack It Up — Shared Stylesheet
   styles.css
   Used by: login.html, halladmin/*, siteadmin/*, db.html (future)
   ============================================================ */

/* ── Google Fonts are loaded via <link> in each HTML file ── */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --bg:         #0d0d0f;
  --surface:    #16161a;
  --surface2:   #1e1e24;
  --border:     #2a2a32;
  --green:      #b8f058;
  --green-dim:  #7aa832;
  --amber:      #f0b858;
  --amber-dim:  #92400e;
  --red:        #f05858;
  --red-dim:    #7f1d1d;
  --blue:       #58b8f0;
  --purple:     #b858f0;
  --text:       #e8e8ec;
  --text-dim:   #7a7a8a;
  --text-muted: #4a4a5a;
}

/* ── Light theme overrides ────────────────────────────────── */
body.light {
  --bg:         #f4f5f7;
  --surface:    #ffffff;
  --surface2:   #eef0f3;
  --border:     #d0d4dc;
  --green:      #4a8c00;
  --green-dim:  #3a6e00;
  --amber:      #b86800;
  --red:        #c0290e;
  --blue:       #1a6fa8;
  --purple:     #7b2fbe;
  --text:       #1a1c22;
  --text-dim:   #4a5068;
  --text-muted: #8a93a8;
}

/* ── Reset ────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  transition: background 0.2s, color 0.2s;
}

/* ── Subtle green glow background ────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(184,240,88,0.07) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ── Layout wrapper ───────────────────────────────────────── */
.wrap {
  position: relative; z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

/* ── Header (full-width bar style — db.html, admin pages) ── */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 1rem;
  position: relative; z-index: 1;
}

/* ── Header (page-top style — index.html) ────────────────── */
.page-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0 0;
  margin-bottom: 64px;
}

/* ── Logo ─────────────────────────────────────────────────── */
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  text-decoration: none;
  line-height: 1;
}

.logo-block { display: flex; align-items: flex-end; gap: 12px; }

.logo-large {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; letter-spacing: 4px;
  color: var(--green); line-height: 1;
}

.logo-ball  { font-size: 28px; line-height: 1; margin-bottom: 2px; }

.logo-sub {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: var(--text-muted); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 4px;
}

.logo-version {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: var(--text-muted); letter-spacing: 1px;
  opacity: 0.7; margin-top: 2px;
}

/* ── Theme toggle ─────────────────────────────────────────── */
.theme-toggle {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 20px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; font-size: 12px; color: var(--text-dim);
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  transition: all 0.2s;
}
.theme-toggle:hover { border-color: var(--text-dim); color: var(--text); }

/* ── Page title (right side of site-header) ──────────────── */
.page-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Section label with line ──────────────────────────────── */
.section-label {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── Badges / tags ────────────────────────────────────────── */
.badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  background: var(--border);
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.2s;
}
.badge-ok      { background: var(--green-dim); color: var(--green); }
.badge-error   { background: var(--red-dim);   color: var(--red);   }
.badge-warning { background: var(--amber-dim); color: var(--amber); }
.badge-checking {
  background: var(--amber-dim); color: var(--amber);
  animation: pulse 1s ease-in-out infinite;
}

.tag-test {
  display: inline-block;
  background: #1a1a00;
  border: 1px solid var(--amber-dim);
  color: var(--amber);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.06em;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--green);
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  width: 100%;
}
.btn-primary:hover    { opacity: 0.85; }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-secondary {
  background: var(--surface);
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 0.65rem 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}
.btn-secondary:hover { background: #0d1a00; }

.btn-amber {
  background: var(--amber);
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.btn-amber:hover    { opacity: 0.85; }
.btn-amber:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.card-body  { padding: 1.25rem; }

.card-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--surface2);
}

/* ── Form elements ────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-input {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-input:focus         { border-color: var(--green); }
.form-input::placeholder  { color: var(--text-muted); }

.form-error {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--red);
  margin-top: 0.25rem;
  display: none;
}
.form-error.visible { display: block; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 28px; margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text-muted);
  flex-wrap: wrap; gap: 10px;
  position: relative; z-index: 1;
}
.site-footer a { color: var(--text-muted); text-decoration: none; }
.site-footer a:hover { color: var(--text-dim); }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .wrap { padding: 0 16px 60px; }
  .page-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   Public Index Page — index.html
   ============================================================ */

.index-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0 0; margin-bottom: 64px;
}
.index-header-right { display: flex; align-items: center; gap: 0.75rem; }

.btn-signin {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; font-size: 12px; color: var(--text-dim);
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-signin:hover { border-color: var(--green); color: var(--green); }

.hero { text-align: center; margin-bottom: 72px; }
.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: 4px; line-height: 1;
  color: var(--text); margin-bottom: 20px;
}
.hero-title span { color: var(--green); }
.hero-sub {
  font-size: 16px; color: var(--text-dim);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px; margin-bottom: 56px;
}
.module-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.2s, transform 0.15s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.module-card:hover { transform: translateY(-2px); }
.module-card.available:hover { border-color: rgba(184,240,88,0.4); }
.module-card.coming-soon { opacity: 0.6; cursor: default; pointer-events: none; }
.module-card-accent { height: 4px; width: 100%; }
.module-card-body { padding: 22px 22px 18px; flex: 1; }
.module-card-header {
  display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px;
}
.module-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.module-status {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 4px; text-transform: uppercase;
  flex-shrink: 0; margin-top: 4px;
}
.status-live    { background: rgba(184,240,88,0.12); color: var(--green);      border: 1px solid rgba(184,240,88,0.25); }
.status-soon    { background: rgba(120,120,140,0.1);  color: var(--text-muted); border: 1px solid var(--border); }
.status-planned { background: rgba(88,184,240,0.08);  color: var(--blue);       border: 1px solid rgba(88,184,240,0.2); }
.module-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; margin-bottom: 6px; }
.module-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; margin-bottom: 16px; }
.module-features { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.module-features li {
  font-size: 11px; color: var(--text-muted);
  font-family: 'DM Mono', monospace; letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 6px;
}
.module-features li::before { content: '·'; color: var(--green); font-size: 16px; line-height: 1; }
.module-card-footer {
  padding: 14px 22px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface2);
}
.launch-btn {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: 6px;
}
.launch-btn::after { content: '→'; font-size: 14px; }
.coming-label {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 1px;
  color: var(--text-muted); text-transform: uppercase;
}

.index-footer {
  border-top: 1px solid var(--border);
  padding-top: 28px; margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text-muted);
  flex-wrap: wrap; gap: 10px;
}
.index-footer a { color: var(--text-muted); text-decoration: none; }
.index-footer a:hover { color: var(--text-dim); }

@media(max-width: 600px) {
  .modules-grid { grid-template-columns: 1fr; }
  .index-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   Admin Layout — shared by siteadmin/* and halladmin/*
   ============================================================ */

/* ── Outer shell ──────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }

/* ── Sidebar ──────────────────────────────────────────────── */
.sidebar {
  width: 220px; flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 10;
}

.sidebar-logo {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.05em;
  text-decoration: none; line-height: 1; display: block;
  /* colour set per-section: .site-admin-accent or .hall-admin-accent */
}
.sidebar-logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px;
}
.sidebar-hall-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; color: var(--text-dim);
  margin-top: 6px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.sidebar-section {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1.25rem 1.5rem 0.5rem;
}

.sidebar-nav { flex: 1; padding: 0.5rem 0; overflow-y: auto; }

.nav-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  color: var(--text-dim); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-item:hover { background: var(--surface2); color: var(--text); }
/* active colour set per-section below */
.nav-icon { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }

.sidebar-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}
.sidebar-user {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; color: var(--text-muted);
  margin-bottom: 0.75rem; line-height: 1.6; white-space: pre-line;
}
.btn-signout {
  width: 100%; background: transparent;
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--text-muted); font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.05em;
  padding: 0.5rem; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.btn-signout:hover { border-color: var(--red); color: var(--red); }

/* ── Site admin accent (green) ────────────────────────────── */
.site-admin .sidebar-logo a   { color: var(--green); }
.site-admin .nav-item.active  { background: var(--surface2); color: var(--green); }

/* ── Hall admin accent (amber) ────────────────────────────── */
.hall-admin .sidebar-logo a   { color: var(--amber); }
.hall-admin .nav-item.active  { background: var(--surface2); color: var(--amber); }

/* ── Main content area ────────────────────────────────────── */
.main-content {
  margin-left: 220px; flex: 1;
  display: flex; flex-direction: column;
}

.main-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 5;
}
.main-header-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 0.05em;
}
.main-header-right { display: flex; align-items: center; gap: 1rem; }
.main-header-version {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; color: var(--text-muted);
}

.main-body { padding: 2rem; flex: 1; }

/* ── Stats cards ──────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem; margin-bottom: 2.5rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 1.25rem;
}
.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; letter-spacing: 0.05em; line-height: 1;
}
.stat-value.loading { color: var(--text-muted); font-size: 1.5rem; }
/* colour set per-section */
.site-admin .stat-value { color: var(--green); }
.hall-admin .stat-value { color: var(--amber); }

/* ── Quick link cards ─────────────────────────────────────── */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.quick-link-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 1.25rem;
  text-decoration: none; color: inherit;
  display: flex; align-items: center; gap: 1rem;
  transition: border-color 0.15s, transform 0.1s;
}
.quick-link-card:hover { transform: translateY(-1px); }
.site-admin .quick-link-card:hover { border-color: var(--green); }
.hall-admin .quick-link-card:hover { border-color: var(--amber); }
.quick-link-icon {
  font-size: 1.5rem; width: 40px; height: 40px;
  background: var(--surface2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.quick-link-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 0.05em;
}
.quick-link-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; color: var(--text-muted); margin-top: 2px;
}

/* ── Admin modal ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(2px);
  z-index: 100; display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.visible { display: flex; }

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
}
.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.05em;
}
.modal-close {
  background: transparent; border: none; color: var(--text-muted);
  font-size: 1.2rem; cursor: pointer; padding: 0.25rem;
  transition: color 0.15s; line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal-body  { padding: 1.5rem; }
.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface2);
  display: flex; gap: 0.75rem; justify-content: flex-end;
}

/* ── Modal error box ──────────────────────────────────────── */
.modal-error {
  background: var(--red-dim); border: 1px solid var(--red);
  border-radius: 6px; padding: 0.65rem 0.9rem;
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  color: var(--red); margin-bottom: 1rem; display: none;
}
.modal-error.visible { display: block; }

/* ── Modal action buttons ─────────────────────────────────── */
.btn-modal-cancel {
  background: transparent; border: 1px solid var(--border);
  border-radius: 6px; color: var(--text-muted);
  font-family: 'DM Mono', monospace; font-size: 0.78rem;
  padding: 0.55rem 1.25rem; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.btn-modal-cancel:hover { border-color: var(--text-dim); color: var(--text); }

.btn-modal-save {
  background: var(--green); color: #000; border: none;
  border-radius: 6px; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  padding: 0.55rem 1.5rem; cursor: pointer; transition: opacity 0.15s;
}
.btn-modal-save:hover    { opacity: 0.85; }
.btn-modal-save:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Inline row action buttons ────────────────────────────── */
.action-btn {
  background: transparent; border: 1px solid var(--border);
  border-radius: 5px; color: var(--text-muted);
  font-family: 'DM Mono', monospace; font-size: 0.68rem;
  padding: 0.3rem 0.65rem; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  margin-right: 4px; white-space: nowrap;
}
.action-btn:hover        { border-color: var(--text-dim); color: var(--text); }
.action-btn.edit:hover   { border-color: var(--amber); color: var(--amber); }
.action-btn.unlock:hover { border-color: var(--amber); color: var(--amber); }
.action-btn.delete:hover { border-color: var(--red);   color: var(--red);   }

/* ── Toast notification ───────────────────────────────────── */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.75rem 1.5rem;
  font-family: 'DM Mono', monospace; font-size: 0.78rem;
  color: var(--text); z-index: 200; opacity: 0;
  transition: opacity 0.2s; pointer-events: none; white-space: nowrap;
}
.toast.visible { opacity: 1; }
.toast.ok  { border-color: var(--green); color: var(--green); }
.toast.err { border-color: var(--red);   color: var(--red);   }

/* ── Empty state ──────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 3.5rem 2rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem; color: var(--text-muted);
}
.empty-state-icon { font-size: 2.5rem; margin-bottom: 1rem; }
