* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 10% 20%, #1b2635 0%, #0d111c 80%);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: #eef2fb;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 200, 0, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 180, 0, 0.05) 0%, transparent 35%);
  pointer-events: none;
}

.glass-panel {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 540px;
  background: rgba(15, 20, 30, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 42px;
  border: 1px solid rgba(255, 200, 0, 0.15);
  box-shadow: 0 35px 75px rgba(0,0,0,0.8), inset 0 1px 1px rgba(255,255,255,0.1);
  padding: 36px 32px 42px;
}

.badge {
  display: inline-block;
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid rgba(255, 200, 0, 0.4);
  border-radius: 60px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #ffe9a0;
  margin-bottom: 16px;
}

h1 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(130deg, #ffffff, #ffe9a0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.subhead {
  font-size: 15px;
  color: #a5b9d4;
  margin-bottom: 32px;
  border-left: 3px solid #ffc107;
  padding-left: 16px;
}

.input-wrapper {
  margin-bottom: 28px;
}

.input-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffd966;
  margin-bottom: 8px;
}

.target-field, select.target-field {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 16px 24px;
  font-size: 16px;
  color: white;
  outline: none;
  appearance: none;
}

.target-field:focus {
  border-color: #ffc107;
  background: rgba(30, 30, 20, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
}

.selector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.platform-card {
  background: rgba(18, 28, 40, 0.7);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 26px;
  padding: 18px 6px;
  text-align: center;
  font-weight: 600;
  color: #b8d0e5;
  cursor: pointer;
  transition: 0.2s;
}

.platform-card.active {
  background: linear-gradient(145deg, #4a3a00, #5f4b00);
  border-color: #ffc107;
  color: white;
}

.execute-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  border: none;
  border-radius: 40px;
  padding: 20px 10px;
  color: #0b111c;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 18px;
}

.status-panel {
  margin-top: 24px;
  background: rgba(0, 20, 25, 0.6);
  border-radius: 36px;
  padding: 16px 24px;
  border: 1px solid #5a5500;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffc107;
}

.blink {
  animation: blink 1.4s infinite;
}

@keyframes blink {
  0% { opacity: 1; } 50% { opacity: 0.3; }
}

.dev-hint {
  position: fixed;
  bottom: 12px;
  right: 16px;
  font-size: 10px;
  color: #ffe9a0;
  background: #0b111c80;
  padding: 4px 12px;
  border-radius: 40px;
}

/* ---------- NEW LOGIN OVERLAY STYLES ---------- */
.overlay {
  position: fixed; top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.85); z-index:200;
  display: flex; align-items:center; justify-content:center;
}

.login-methods {
  display: flex; gap:8px; margin-bottom:24px;
}
.method-btn {
  flex:1; padding:12px; border-radius:30px; border:1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.4); color:white; cursor:pointer; font-weight:600;
  transition: 0.2s;
}
.method-btn.active {
  background: linear-gradient(135deg, #ffc107, #ff9800); color:#0b111c; border:none;
}
.method-btn:not(.active):hover {
  background: rgba(255,255,255,0.1);
}

.login-area {
  margin-top:20px;
}