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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #1a1a2e;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 480px;
  padding: 24px;
}

.card {
  text-align: center;
}

.title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 40px;
}

.hero-text {
  background: #16213e;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 32px;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #ccc;
}

.features {
  text-align: left;
  margin-bottom: 32px;
}

.feature {
  display: flex;
  align-items: center;
  background: #16213e;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}

.feature-icon {
  font-size: 28px;
  margin-right: 14px;
  flex-shrink: 0;
}

.feature h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature p {
  font-size: 13px;
  color: #bbb;
}

.cta {
  margin-bottom: 32px;
}

.coming-soon {
  background: #6c63ff;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

footer {
  text-align: center;
  padding-top: 16px;
}

footer a {
  color: #6c63ff;
  text-decoration: none;
  font-size: 14px;
  margin: 0 12px;
}

footer a:hover {
  text-decoration: underline;
}
