/* Tallydice Landing Page — Base styles & design tokens */

:root {
  --bg: #0F1923;
  --card: #1A2B3C;
  --surface: #2D4356;
  --text-1: #E8ECF1;
  --text-2: #8B9DAF;
  --accent: #3EDBBE;
  --alert: #FF6B4A;
  --divider: rgba(255,255,255,0.08);
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
