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

:root {
  --bg-primary: #000117;
  --bg-card: #1a1a1a;
  --orange: #f9671a;
  --orange-light: #ffb76a;
  --white: #ffffff;
  --gray-light: #dcdcdc;
  --gray-mid: #a8a8a8;
  --gray-dark: #d4d4d4;
  --border-gray: #333333;
  --border-gray-light: #515151;
  --font-display: "Luckiest Guy", cursive;
  --font-body: "Inter", sans-serif;
  --font-accent: "Syne", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 1000px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: opacity 0.3s;
  text-decoration: none;
  width: fit-content;
  line-height: 1;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 12px;
  border: 2px solid var(--white);
  cursor: pointer;
  text-transform: uppercase;
  transition:
    background 0.3s,
    color 0.3s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--bg-primary);
}

