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

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

a {
  color: #d0d0d0;
}

header,
main,
footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
}

nav {
  display: flex;
  gap: 12px;
}

nav a {
  text-decoration: none;
  color: #fff;
}

h1,
h2,
h3,
p {
  margin: 0 0 14px;
}

ul {
  margin: 0 0 14px 20px;
}

.muted {
  color: #c8c8c8;
}

.section {
  margin-top: 32px;
}

.accent {
  color: #ffd54f;
}

.support-email {
  color: #ffd54f;
  text-decoration: none;
  font-weight: 600;
}

.support-email:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 12px;
}

@media (max-width: 720px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  nav {
    flex-wrap: wrap;
  }
}
