body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  color: #fff;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.3);
  max-width: 400px;
}

button {
  background: #ffcc00;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s;
}

button:hover {
  background: #ffaa00;
}

#status {
  margin-top: 15px;
  font-weight: bold;
}
