:root {
  --bg-color: #0f172a;
  --card-bg: #1e293b;
  --accent-turbo: #ef4444;
  --accent-vigilante: #3b82f6;
  --accent-success: #10b981;
  --text-color: #f8fafc;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.auth-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.auth-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.auth-card input {
  padding: 0.8rem;
  width: 80%;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #334155;
  background: #0f172a;
  color: #fff;
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-bg);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  background: #475569;
}

.status-badge.TURBO { background: var(--accent-turbo); }
.status-badge.VIGILANTE { background: var(--accent-vigilante); }
.status-badge.RESERVED { background: var(--accent-success); }

.control-panel {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.target-selector {
  margin-bottom: 1.5rem;
}

.target-selector select {
  width: 100%;
  padding: 0.8rem;
  background: #0f172a;
  color: #fff;
  border: 1px solid #334155;
  border-radius: 6px;
  margin-top: 0.5rem;
}

.button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn {
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  transition: transform 0.1s;
}

.btn:active { transform: scale(0.98); }
.btn-turbo { background: var(--accent-turbo); }
.btn-vigilante { background: var(--accent-vigilante); }
.btn-stop { background: #64748b; }
.btn-secondary { background: #475569; }

.log-console {
  background: #090d16;
  font-family: monospace;
  padding: 1rem;
  height: 300px;
  overflow-y: auto;
  border-radius: 8px;
  border: 1px solid #334155;
  color: #38bdf8;
}
