* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #dc143c;
  --dark-red: #8b0000;
  --gold: #ffb700;
  --bright-red: #ff3366;
  --bg-dark: #0a0a0a;
  --card-bg: #1a1a1a;
  --text-white: #ffffff;
  --text-gray: #cccccc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "LatoWeb", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 14px;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "gilroybold", sans-serif;
}
