@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

:root {
  --yellow: #FFE000;
  --yellow-dark: #E6C800;
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #1A1A1A;
  --bg4: #222222;
  --border: #2A2A2A;
  --text: #F0F0F0;
  --text-muted: #888;
  --text-dim: #555;
  --green: #00FF87;
  --red: #FF3B3B;
  --blue: #00B4FF;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-yellow: 0 0 24px rgba(255,224,0,0.2);
  --font-display: 'Bebas Neue', cursive;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: all 0.2s ease;
  --nav-height: 64px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
}
