/* css/theme.css — EOTIR brand tokens */

:root {
  /* Core palette */
  --bg-primary: #0a0a14;
  --bg-secondary: #12081e;
  --bg-surface: #1a1024;
  --bg-hover: #ffffff08;
  --bg-active: #c050c010;

  /* Brand colors */
  --accent-primary: #c050c0;
  --accent-secondary: #5080e0;
  --accent-gradient: linear-gradient(90deg, #c050c0, #5080e0);
  --accent-glow: #c050c040;
  --accent-glow-strong: #c050c060;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --text-dim: #666666;
  --text-lore: #888888;

  /* Interactive */
  --border-subtle: #ffffff10;
  --border-accent: #c050c020;
  --now-playing-bg: linear-gradient(90deg, #c050c010, transparent);
  --now-playing-border: var(--accent-primary);

  /* Sizing */
  --player-bar-height: 72px;
  --album-art-lg: 200px;
  --album-art-md: 140px;
  --album-art-sm: 40px;
  --album-art-xs: 36px;
  --track-art: 40px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 24px;
  --radius-full: 50%;

  /* Typography */
  --font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-size-xs: 10px;
  --font-size-sm: 11px;
  --font-size-md: 13px;
  --font-size-lg: 18px;
  --font-size-xl: 28px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --letter-spacing-wide: 2px;
  --letter-spacing-wider: 3px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.glow-bg {
  position: absolute;
  pointer-events: none;
  border-radius: var(--radius-full);
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
}

.art-glow {
  box-shadow: 0 8px 40px var(--accent-glow), 0 0 1px var(--accent-glow-strong);
}
