* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #000;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 20px;
  max-width: 600px;
}

h1 {
  font-size: 40px;
  background: linear-gradient(90deg, #A855F7, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.subtitle {
  color: #aaa;
  font-size: 18px;
  line-height: 1.8;
  margin: 30px 0;
}

.btn-primary {
  background: linear-gradient(90deg, #A855F7, #EC4899);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  margin: 20px 0;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.5);
}

.big-btn {
  padding: 20px 80px;
  font-size: 24px;
  margin: 40px 0;
}

.status {
  margin-top: 40px;
  font-size: 20px;
  color: #4ade80;
  min-height: 30px;
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #444;
  font-size: 14px;
}