:root {
  --bg: #140c22;
  --accent: #d16ba5;
  --text-main: #e6dff5;
  --text-muted: #b9a9d6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAV */

header {
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* HERO */

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem;
}

.hero {
  max-width: 700px;
  margin-bottom: 4rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.accent {
  color: var(--accent);
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.button {
  background: var(--accent);
  color: #140c22;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
