body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
  background: #0f0f1a;
  color: white;
}

.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top left, #ff00cc, transparent 30%),
    radial-gradient(circle at bottom right, #00ccff, transparent 30%),
    radial-gradient(circle at center, #6a00ff, transparent 40%);
  filter: blur(80px);
  z-index: -1;
}

.card {
  width: 400px;
  margin: 80px auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

h1 {
  margin-bottom: 10px;
  font-size: 32px;
}

.subtitle {
  color: #cccccc;
  margin-bottom: 30px;
}

input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.connect {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
}

.deploy {
  background: linear-gradient(90deg, #ff00cc, #6a00ff);
  color: white;
}

button:hover {
  transform: scale(1.03);
}

#status {
  margin-top: 20px;
  color: #00ffcc;
  word-break: break-word;
}

.github {
  display: inline-block;
  margin-top: 25px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
