/* ─── BRAND CONFIG ───
   Change these hex codes to match your logo.
   The rest of the app derives from these 6 values. */
:root {
  --brand: #e11d48;              /* Logo primary (rose/red) */
  --brand-dark: #be123c;          /* Darker shade for hover states */
  --brand-glow: rgba(225,29,72,0.35);
  --accent: #f59e0b;              /* Logo secondary / gold highlight */
  --accent-glow: rgba(245,158,11,0.25);

  /* Core dark UI */
  --void: #050508;              /* Deepest background */
  --surface: #0e0e14;           /* Sidebar / cards */
  --panel: #161621;             /* Elevated panels / inputs */
  --line: #24243a;              /* Borders */
  --line-light: #30304d;        /* Hover borders */

  /* Typography */
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
}

.dark { color-scheme: dark; }

body {
  background-color: var(--void);
  color: var(--text-secondary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Scrollbars */
* { scrollbar-width: thin; scrollbar-color: var(--line) var(--void); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--line-light); }

/* Utilities */
.glass {
  background: rgba(22,22,34,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
}

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.6);
  border-color: var(--line-light);
}

/* Active nav link */
.nav-link.active {
  background: rgba(225,29,72,0.08);
  color: var(--brand);
  border: 1px solid rgba(225,29,72,0.2);
  font-weight: 600;
}

/* Form elements */
input, textarea, select {
  color-scheme: dark;
  background-color: var(--void);
  border-color: var(--line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
  outline: none;
}

/* Brand button glow */
.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 0 20px var(--brand-glow);
  transition: all 0.2s ease;
}
.btn-brand:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 30px var(--brand-glow);
}

/* Status dots */
.status-glow { box-shadow: 0 0 10px var(--brand-glow); }
.status-glow-green { box-shadow: 0 0 8px rgba(16,185,129,0.45); }