/* LoL Idle — coming soon (azul escuro, estilo Rocket Idle) */
:root {
  --bg: #0a1424;
  --card: #122038;
  --line: #3d5a80;
  --line-in: #243656;
  --line-out: #060d18;
  --gold: #c8aa6e;
  --accent: #0397ab;
  --txt: #e8eef8;
  --dim: #8fa4c4;
  --mold: inset 0 0 0 2px var(--line-in), 4px 4px 0 rgba(0, 0, 0, .46);
  --body: Consolas, 'Lucida Console', 'Courier New', monospace;
  --head: 'Arial Narrow', 'Trebuchet MS', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100vh; }
body {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  color: var(--txt);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 50% 4%, rgba(3, 151, 171, .18), transparent 34%),
    radial-gradient(circle at 8px 8px, rgba(61, 90, 128, .12) 0 3px, transparent 4px),
    linear-gradient(155deg, #0e1a32 0%, #0a1424 48%, #060d18 100%);
  background-attachment: fixed;
}

.pixel-font {
  font-family: var(--head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
}

#login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px 16px 60px;
  background:
    radial-gradient(circle at 50% 8%, rgba(3, 151, 171, .22), transparent 40%),
    linear-gradient(155deg, #0e1a32 0%, #0a1424 48%, #060d18 100%);
}

.login-box {
  width: min(400px, 94vw);
  text-align: center;
  padding: 26px 22px 20px;
  background: linear-gradient(#152842 0%, #0f1f38 52%, #0a1628 100%);
  border: 4px solid var(--line);
  outline: 2px solid var(--line-out);
  border-radius: 2px;
  box-shadow: var(--mold);
  position: relative;
}

.soon-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  font-size: 11px;
  color: #061018;
  background: linear-gradient(#c8aa6e, #9a7b4f);
  border: 2px solid #5c4a2e;
  box-shadow: 0 0 16px rgba(200, 170, 110, .45);
  animation: pulse-soon 2.4s ease-in-out infinite;
}

@keyframes pulse-soon {
  0%, 100% { box-shadow: 0 0 12px rgba(200, 170, 110, .35); }
  50% { box-shadow: 0 0 22px rgba(3, 151, 171, .55); }
}

.login-logo { margin: 8px 0 4px; }
.login-logo img { display: block; margin: 0 auto; filter: drop-shadow(0 0 10px rgba(3, 151, 171, .35)); }

.login-box h1 {
  font-size: 26px;
  line-height: 1.08;
  color: var(--gold);
  margin: 8px 0 6px;
  text-shadow: 2px 3px 0 #060d18;
}

.sub { color: var(--dim); font-size: 12px; margin-bottom: 16px; line-height: 1.5; }
.sub a { color: var(--accent); text-decoration: none; }
.sub a:hover { text-decoration: underline; }

.login-form { display: flex; flex-direction: column; gap: 9px; }
.login-form.blocked input {
  opacity: .55;
  cursor: not-allowed;
  font-size: 14px;
  padding: 9px 11px;
  color: var(--dim);
  background: #070f1a;
  border: 3px solid #2a3f5c;
  border-radius: 2px;
}

.btn {
  font-family: var(--head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 13px;
  padding: 9px 13px;
  border: 3px solid #173c2e;
  border-radius: 2px;
  cursor: not-allowed;
  opacity: .5;
}

.btn.gold {
  color: #1a1408;
  background: linear-gradient(#c8aa6e, #8a7040);
  border-color: #5c4a2e;
}

.login-hint { color: var(--dim); font-size: 11px; margin: 0; }

.sister-links {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 2px solid var(--line-in);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sister-label { font-size: 10px; color: var(--dim); text-transform: uppercase; letter-spacing: .8px; }

.sister-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--txt);
  text-decoration: none;
  background: linear-gradient(#1e3555, #122038);
  border: 2px solid var(--line);
  border-radius: 2px;
  transition: filter .12s;
}

.sister-btn:hover { filter: brightness(1.15); }

#footer {
  text-align: center;
  font-size: 10px;
  color: var(--dim);
  padding: 14px 16px;
  line-height: 1.5;
  border-top: 2px solid var(--line-in);
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  padding: 10px 16px;
  font-size: 12px;
  color: var(--txt);
  background: #122038;
  border: 2px solid var(--accent);
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 100;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
