@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

:root {
  --bg: #0a0a0a;
  --text: #f0f0f0;
  --accent: #00e0b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

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

header {
  padding: 20px 5%;
  border-bottom: 1px solid #222;
}

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

.logo {
  font-weight: 600;
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--accent);
}

main {
  flex: 1;
  padding: 5% 10%;
}

.hero {
  text-align: center;
  padding: 100px 0;
}

.hero h2 span {
  color: var(--accent);
}

footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #222;
  font-size: 0.9em;
  opacity: 0.7;
}
