body {
  margin: 0;
  background: linear-gradient(135deg, #0A0E27, #1a1d3a);
  font-family: Arial, sans-serif;
  color: white;
}

.screen {
  display: none;
  padding: 40px;
}

.screen.active {
  display: block;
  animation: fade 0.4s;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.center {
  text-align: center;
}

.card {
  background: #11153a;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  margin: auto;
  box-shadow: 0 0 25px rgba(30,144,255,0.3);
}

.logo {
  font-size: 32px;
  letter-spacing: 4px;
  color: #00D9FF;
  margin-bottom: 20px;
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #1E90FF;
  border-top: 4px solid transparent;
  border-radius: 50%;
  margin: 15px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: #0b0f2a;
  border: 1px solid #1E90FF;
  border-radius: 8px;
  color: white;
}

input:focus {
  outline: none;
  box-shadow: 0 0 10px #00D9FF;
}

button {
  padding: 12px;
  width: 100%;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  background: #1E90FF;
  color: white;
  cursor: pointer;
}

button.secondary {
  background: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.tool {
  background: #14184a;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.tool:hover {
  box-shadow: 0 0 15px #1E90FF;
}

.discord {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: #5865F2;
  text-decoration: none;
}

.form {
  max-width: 500px;
}

.actions {
  display: flex;
  gap: 10px;
}

.logs {
  background: #0b0f2a;
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-family: monospace;
  max-height: 200px;
  overflow-y: auto;
}

.hidden {
  display: none;
}
