/* ============================================================
   design-system.css — DJ Aladdin (kksdumpsters)
   Design tokens and global base styles
   ============================================================ */

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Colors */
  --color-bg:          #0a0a0a;
  --color-surface:     #111111;
  --color-border:      #1e1e1e;
  --color-text:        #ffffff;
  --color-text-muted:  #888888;
  --color-text-dim:    #444444;
  --color-accent:      #310B0B;

  /* Fonts */
  --font-display: "Bebas Neue", "Helvetica Neue", sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;

  /* Type scale */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 16px;
  --text-md:   20px;
  --text-lg:   28px;
  --text-xl:   48px;
  --text-2xl:  72px;
  --text-3xl:  120px;

  /* Spacing */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-6:   24px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
  --space-16:  64px;
  --space-20:  80px;
  --space-24:  96px;
  --space-32:  128px;

  /* Layout */
  --max-width:     1440px;
  --content-width: 1200px;
  --narrow-width:  720px;
  --nav-height:    56px;

  /* Motion */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  /* Radius — 0 everywhere */
  --radius: 0px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

hr {
  border: none;
  border-top: 1px solid var(--color-border);
}

/* ============================================================
   FOCUS — global accessible focus ring
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
