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

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.navbar {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: bold;
  color: white;
}

.nav-links a {
  color: #aaa;
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-icon {
  width: 70px;
  height: 70px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-icon i {
  font-size: 28px;
  color: white;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(90deg, #d0d0d0, #888);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 1.1rem;
  color: #bbb;
  max-width: 600px;
  margin-top: 0.5rem;
}

.powered {
  color: #777;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.footer {
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #1f1f1f;
}
