@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(-45deg, #0f0, #00f, #0ff, #f0f);
  background-size: 400% 400%;
  animation: bgMove 15s ease infinite;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 0 25px #0f0;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.title {
  font-size: 26px;
  color: #00ff99;
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: #111;
  color: #0f0;
  box-shadow: 0 0 8px #0f0;
  margin-bottom: 16px;
  text-align: center;
}

.btn {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.deploy {
  background: linear-gradient(90deg, #00f, #0ff);
  box-shadow: 0 0 10px #00f;
}

.channel {
  background: linear-gradient(90deg, #ff00ff, #ff0099);
  box-shadow: 0 0 10px #f0f;
}

.contact {
  background: linear-gradient(90deg, #ffa500, #ff0066);
  box-shadow: 0 0 10px #ff6600;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px white;
}

.loader {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  border: 5px solid #fff;
  border-top: 5px solid #0f0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
