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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0b0b10;
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.logo {
  font-size: 3rem;
  letter-spacing: 0.25rem;
  font-weight: 800;
}

.tagline {
  margin-top: 10px;
  font-size: 1rem;
  opacity: 0.8;
}

#notifyBtn {
  margin-top: 24px;
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  background: #00c6ff;
  color: #0b0b10;
  font-weight: 600;
  cursor: pointer;
}

#notifyBtn:hover {
  background: #27d9ff;
}

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
}

.content h2 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.content p,
.content li {
  margin-bottom: 8px;
  line-height: 1.5;
}

footer {
  text-align: center;
  padding: 16px;
  font-size: 0.8rem;
  opacity: 0.7;
}
