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

html, body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
}

body {
  font-family: 'Proxima Nova', -apple-system, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}

/* VARIABLES */
:root {
  --bg: #000;
  --bg-soft: #111;
  --text: #fff;
  --text-muted: #aaa;
  --text-gold: #998D5C;
  --accent: #e50914;

  --container: 1200px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Futura', sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 2px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

p {
  color: var(--text-muted);
}

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

.text-center {
  text-align: center;
}