* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #050505;
  color: #f5f5f5;
}

.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.overlay {
  background: rgba(5, 5, 5, 0.72);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(6px);
}

.logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin-bottom: 1rem;
}

h1 {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
}

.subtitle {
  margin: 0 0 1.5rem;
  color: #c9c9c9;
}

.download-btn {
  display: inline-block;
  background: #d4af37;
  color: #050505;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  transition: transform 0.15s ease;
}

.download-btn:hover {
  transform: translateY(-1px);
}

.steps {
  text-align: left;
  margin: 2rem 0 0;
  padding-left: 1.2rem;
  color: #c9c9c9;
  font-size: 0.9rem;
  line-height: 1.5;
}
