/* Medium-Dark Neobrutalism */
:root {
  /* Colors */
  --bg-color: #1f2028;
  --card-bg: #2a2c35;
  --text-main: #f0f0f5;
  --text-muted: #b4b8c5;

  /* Bold accents */
  --accent-primary: #00f0ff; /* Electric Cyan */
  --accent-secondary: #ff003c; /* Neon Red */
  --accent-tertiary: #ffe600; /* Cyber Yellow */

  /* Structural */
  --border-color: #000000;
  --border-width: 3px;
  --border-radius: 8px;

  /* Typography */
  --font-display: "Space Grotesk", sans-serif;
  --font-mono: "Space Mono", monospace;

  /* Shadows - Hard brutalist drops */
  --shadow-sm: 4px 4px 0px var(--border-color);
  --shadow-md: 6px 6px 0px var(--border-color);
  --shadow-lg: 8px 8px 0px var(--border-color);

  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}
