:root {
  /* Brand */
  --lime: #C6F000;
  --lime-dim: #9abe00;
  --lime-hover: #d9ff00;

  /* Backgrounds */
  --bg: #121212;
  --bg-2: #1a1a1a;
  --bg-3: #222222;
  --bg-4: #1e1e1e;

  /* Text */
  --text: #f0f0f0;
  --text-muted: #888888;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-lime: rgba(198, 240, 0, 0.3);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Layout */
  --container-max: 1100px;
  --container-padding: 2.5rem;
  --section-padding: 6rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.4s ease;
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
    --section-padding: 4rem;
  }
}
