:root {
  --black:      #0D0D0D;
  --deep-red:   #C1121F;
  --accent-red: #FF2D2D;
  --white:      #FFFFFF;
  --dark:       #161616;
  --mid:        #1E1E1E;
  --light:      #2A2A2A;
  --border:     #2E2E2E;
  --muted:      #888888;
  --dim:        #555555;
  --card:       #181818;
  --success:    #10b981;
  --warning:    #f59e0b;
  --info:       #3b82f6;

  --header-h:   64px;
  --r:          8px;
  --r-lg:       14px;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --shadow-red: 0 0 24px rgba(193,18,31,0.3);
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --dur:        0.22s;

  --font-display: 'Rajdhani', sans-serif;
  --font-body:    'Exo 2', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
  color: inherit;
}

input, select, textarea {
  font-family: var(--font-body);
  color: var(--white);
}

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

svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

::selection {
  background: rgba(193,18,31,0.35);
  color: var(--white);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--deep-red); }