/* ==================================================
   RESET TOTAL
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==================================================
   FUNDO CINEMATOGRÁFICO – LOGIN
================================================== */
body.login {
  height: 100vh;
  font-family: monospace;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.4), rgba(0,0,0,0.95)),
    url("../img/bg-login.jpg") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfeecf;
}

/* ==================================================
   PAINEL DE LOGIN
================================================== */
.login-panel {
  width: 360px;
  padding: 40px 30px;
  background: rgba(10, 20, 10, 0.9);
  border: 1px solid rgba(90, 160, 90, 0.35);
  box-shadow:
    0 0 40px rgba(0,0,0,0.9),
    inset 0 0 20px rgba(90,255,120,0.08);
  text-align: center;
  animation: fadeIn 1.2s ease;
  position: relative;
  z-index: 1;
}

/* LOGO */
.login-panel img {
  width: 160px;
  margin-bottom: 30px;
  filter:
    drop-shadow(0 0 12px rgba(120,255,160,0.6))
    brightness(1.1);
}

/* INPUTS */
.login-panel input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(90,160,90,0.4);
  color: #dfffdc;
  outline: none;
  font-size: 14px;
  font-family: monospace;
}

.login-panel input::placeholder {
  color: #9fbf9f;
}

/* BOTÕES */
.login-panel button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: linear-gradient(135deg, #1e5f3a, #2fa866);
  border: none;
  color: #eaffea;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(80,255,140,0.4);
  transition: 0.25s;
  font-family: monospace;
}

.login-panel button:hover {
  background: linear-gradient(135deg, #2fa866, #1e5f3a);
  box-shadow: 0 0 25px rgba(120,255,180,0.8);
}

/* ==================================================
   MODAL CONSULTA – OVERLAY
================================================== */
.consulta-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.consulta-overlay.ativo {
  display: flex;
}

/* ==================================================
   MODAL CONSULTA – PAINEL VERTICAL
================================================== */
.consulta-panel {
  width: 420px;
  max-width: 92%;
  height: 80vh;

  background: rgba(10, 20, 10, 0.95);
  border: 1px solid rgba(90,160,90,0.35);

  box-shadow:
    0 0 40px rgba(0,0,0,0.9),
    inset 0 0 18px rgba(90,255,120,0.08);

  padding: 26px 24px;
  color: #cfeecf;
  font-family: monospace;

  display: flex;
  flex-direction: column;
  gap: 14px;

  animation: fadeIn 0.5s ease;
  position: relative;
}

/* FECHAR */
.consulta-fechar {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #cfeecf;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
}

.consulta-fechar:hover {
  opacity: 1;
}

/* TÍTULO */
.consulta-panel h1 {
  font-size: 18px;
  text-align: center;
  letter-spacing: 2px;
}

/* ==================================================
   FILTROS CONSULTA
================================================== */
.consulta-filtros {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.consulta-filtros select,
.consulta-filtros input {
  width: 100%;
  padding: 10px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(90,160,90,0.4);
  color: #dfffdc;
  font-family: monospace;
  font-size: 13px;
  outline: none;
}

/* ==================================================
   LISTA CONSULTA
================================================== */
.consulta-lista {
  flex: 1;
  overflow-y: auto;
  margin-top: 10px;
  padding-right: 4px;
}

/* ITEM */
.consulta-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  margin-bottom: 8px;

  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(90,160,90,0.25);
}

/* IMAGEM */
.consulta-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(90,160,90,0.3);
}

/* INFO */
.consulta-info {
  flex: 1;
}

.consulta-nome {
  font-weight: bold;
  color: #cfeecf;
  font-size: 13px;
}

.consulta-selo {
  font-size: 11px;
  opacity: 0.7;
}

.consulta-valor {
  margin-top: 4px;
  font-weight: bold;
  color: #9fffbd;
}

/* ==================================================
   ANIMAÇÃO GLOBAL
================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   STALKER DECORATIVO FIXO
========================= */

.membros-stalker {
  position: fixed;        /* <- ISSO é o ponto-chave */
  bottom: 0;
  right: -70px;           /* levemente fora da tela */
  
  height: 88vh;
  max-height: 900px;

  pointer-events: none;
  z-index: 2;             /* acima do fundo, abaixo de modais */

  opacity: 0.95;

  filter:
    drop-shadow(-15px 0 35px rgba(0,0,0,0.9))
    brightness(0.95)
    contrast(1.05);
}

/* Não mostrar em telas pequenas */
@media (max-width: 1100px) {
  .membros-stalker {
    display: none;
  }
}


