/* LOGIN OVERLAY */
#login-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#login-watermark {
  display: none;
}

@keyframes wm-scroll {
  0% { background-position: 0 0; }
  100% { background-position: 0 60px; }
}

#login-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='60'%3E%3Ctext x='10' y='38' font-family='Courier New,monospace' font-size='14' font-weight='bold' letter-spacing='2' fill='%23ffffff'%3EAG%3Ctspan fill='%23AAFF00'%3E_%3C/tspan%3ESYNDICATE%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 280px 60px;
  opacity: 0.13;
  transform: rotate(-18deg) scale(1.5);
  pointer-events: none;
  animation: wm-scroll 6s linear infinite;
}

#login-box {
  position: relative;
  z-index: 1;
  background: #161616;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px #2a2a2a;
  border: 1px solid #2a2a2a;
  width: 100%;
  max-width: 360px;
  text-align: center;
}

.ag-block {
  margin-top: 2rem;
  background: #0d0d0d;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  text-align: left;
  border: 1px solid #1e1e1e;
}

.ag-block-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.ag-logo-text {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
}

.ag-logo-text .ag-green {
  color: #aaff00;
}

.ag-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  color: #aaff00;
  letter-spacing: 0.1em;
}

.ag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aaff00;
  animation: ag-pulse 2s infinite;
}

@keyframes ag-pulse {
  0%,
  100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.ag-tagline {
  font-family: 'Courier New', monospace;
  font-size: 0.62rem;
  color: #555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#login-box .logo-image {
  display: block;
  width: auto;
  height: 56px;
  max-width: 100%;
  margin: 0 auto 0.35rem;
}

#login-box p {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 1.8rem;
}

#login-box input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #2a2a2a;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  background: #1f1f1f;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

#login-box input::placeholder {
  color: #555;
}

#login-box input:focus {
  border-color: #aaff00;
}

#login-box button {
  width: 100%;
  background: #aaff00;
  color: #0d0d0d;
  border: none;
  padding: 0.85rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

#login-box button:hover {
  background: #8fdb00;
}

#login-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.8rem;
  display: none;
}
