

h1 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #00eaff;
  text-shadow: 0 0 12px #00eaff, 0 0 24px #00eaff;
}


#painel-config {
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(15, 20, 35, .55);
  border: 1px solid #1de9ff55;
  box-shadow: 0 0 28px #00eaff33 inset, 0 8px 24px #00000066;
}

#painel-config .topo-config {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

#painel-config .config-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: start;
}

#painel-config .field label {
  font-size: 0.75rem;
  margin-bottom: 3px;
  color: #9bdfff;
  display: block;
  text-align: left;
}

#painel-config .field select,
#painel-config .field input {
  width: 100%;
  height: 28px;
  padding: 2px 8px;
  font-size: 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  background: rgba(5, 20, 35, 0.9);
  color: #fff;
  box-sizing: border-box;
}

#painel-config .field.actions {
  grid-column: span 4;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: flex-end;
}

#painel-config .btn {
  height: 28px;
  min-width: 120px;
  padding: 0 12px;
  font-size: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}


#painel-config .btn.pausa {
  background: linear-gradient(145deg, #004080, #0070c0);
  color: #fff;
}

#painel-config .btn.limpar {
  background: linear-gradient(145deg, #6e0000, #b30000);
  color: #fff;
}

#painel-config .btn.som {
  background: linear-gradient(145deg, #007a3c, #00b36b);
  color: #fff;
  animation: pulseGlow 3s infinite;
}


@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 6px rgba(0, 255, 153, 0.3);
  }

  50% {
    box-shadow: 0 0 14px rgba(0, 255, 153, 0.9);
  }

  100% {
    box-shadow: 0 0 6px rgba(0, 255, 153, 0.3);
  }
}


.painel-central {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.coluna-esquerda,
.coluna-centro,
.coluna-direita {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.coluna-centro {
  align-items: center;
  justify-content: center;
  flex: 2 1 400px;
  max-width: 600px;
}


.coluna-esquerda,
.coluna-direita {
  flex: 1 1 300px;
  max-width: 400px;
}



#painel-suportes {
  padding: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

#painel-suportes h2 {
  color: #00e0ff;
  text-shadow: 0 0 8px #00e0ff;
  margin-bottom: 8px;
}

#painel-suportes p {
  margin: 5px 0;
  font-size: 14px;
  font-weight: 600;
}

.suporte-ok {
  color: #00ff88;
  text-shadow: 0 0 6px #00ff88;
}

.resistencia-x {
  color: #ff4444;
  text-shadow: 0 0 6px #ff4444;
}

.distancia-info {
  color: #ffd700;
  text-shadow: 0 0 6px #ffd700;
}


#painel-preco p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  margin: 20px auto;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  color: #FFD700;
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #FFA500;
  animation: pulsePreco 2s infinite;
}

@keyframes pulsePreco {
  0% {
    box-shadow: 0 0 10px #FFD700, 0 0 20px #FFA500;
  }

  50% {
    box-shadow: 0 0 25px #FFD700, 0 0 50px #FFA500;
  }

  100% {
    box-shadow: 0 0 10px #FFD700, 0 0 20px #FFA500;
  }
}


#painel-lucro p {
  border: 2px solid;
  border-radius: 10px;
  padding: 6px 12px;
  display: inline-block;
  animation: lucroPulse 2s infinite;
}

#painel-lucro .positivo {
  color: #0f0;
  border-color: #0f0;
}

#painel-lucro .negativo {
  color: #f00;
  border-color: #f00;
}

@keyframes lucroPulse {

  0%,
  100% {
    box-shadow: 0 0 10px currentColor;
  }

  50% {
    box-shadow: 0 0 25px currentColor;
  }
}


#painel-confluencia {
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  color: #f0f0f0;
  background: rgba(20, 20, 20, 0.35);
  backdrop-filter: blur(8px);
  transition: all 0.5s ease;
}

#msg-confluencia {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 10px;
}

#resumo-confluencia,
#ultimo-alerta {
  font-size: 0.95em;
  opacity: 0.85;
  margin-top: 6px;
  color: #d8d8d8;
}

#painel-historico {
  margin-top: 10px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.9em;
  color: #eee;
  max-height: 120px;
  overflow-y: auto;
}

#historico-confluencia {
  list-style: none;
  padding: 0;
  margin: 0;
}

#historico-confluencia li {
  padding: 4px 6px;
  margin-bottom: 4px;
  border-left: 3px solid #00ff99;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}


@media (max-width: 768px) {
  .painel-central {
    flex-direction: column;
    align-items: center;
  }

  .coluna-esquerda,
  .coluna-centro,
  .coluna-direita {
    width: 100% !important;
    max-width: 95%;
  }

  #painel-preco p {
    width: 160px;
    height: 160px;
    font-size: 1.2em;
  }

  #painel-lucro p {
    font-size: 0.9em;
  }

  #painel-confluencia,
  #painel-suportes {
    width: 95% !important;
    margin: 0 auto;
    position: relative;
  }

  #painel-historico {
    font-size: 0.8rem;
    max-height: 90px;
  }
}


footer.creditos {
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin: 30px auto 70px auto;
  color: #ccc;
  opacity: 0.85;
  clear: both;
}

footer.creditos strong {
  color: #00ffe7;
}

footer.creditos a {
  color: #00ffe7;
  text-decoration: none;
  font-weight: bold;
}

footer.creditos a:hover {
  text-decoration: underline;
}

.aviso-fixo {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #000;
  background: rgba(255, 235, 59, 0.25);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9999;
  text-align: center;
  padding: 0 10px;
}


@media (max-width: 768px) {

  
  .bloco,
  #painel-suportes,
  #painel-indicadores,
  #painel-intervalo,
  #painel-preco,
  #painel-lucro,
  #painel-confluencia,
  #painel-historico {
    width: 95% !important;
    max-width: 480px;
    margin: 12px auto;
    position: relative;
    height: auto !important;
  }

  
  .bloco h2,
  #painel-confluencia h2 {
    font-size: 1.1rem;
    text-shadow: inherit;
  }

  #painel-preco p {
    font-size: 1.3rem !important;
    padding: 14px !important;
    border-radius: 50%;
  }

  #valor-lucro {
    font-size: 1rem;
    padding: 8px 12px;
  }

  #painel-historico {
    font-size: 0.9rem;
    max-height: 100px;
    overflow-y: auto;
  }
}


#painel-confluencia.suporte-proximo {
  background: linear-gradient(145deg, rgba(0, 255, 136, 0.15), rgba(0, 0, 0, 0.4));
  border: 2px solid #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.7), inset 0 0 10px rgba(0, 255, 136, 0.3);
  animation: pulsarVerde 2s infinite;
}


#painel-confluencia.resistencia-proxima {
  background: linear-gradient(145deg, rgba(255, 68, 68, 0.15), rgba(0, 0, 0, 0.4));
  border: 2px solid #ff4444;
  box-shadow: 0 0 20px rgba(255, 68, 68, 0.7), inset 0 0 10px rgba(255, 68, 68, 0.3);
  animation: pulsarVermelho 2s infinite;
}


#painel-confluencia.lateral {
  background: linear-gradient(145deg, rgba(255, 221, 87, 0.15), rgba(0, 0, 0, 0.4));
  border: 2px solid #ffd700;
  box-shadow: 0 0 15px rgba(255, 221, 87, 0.6), inset 0 0 8px rgba(255, 221, 87, 0.3);
}


#painel-confluencia {
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  color: #f0f0f0;
  font-family: "Orbitron", sans-serif;
  background: rgba(20, 20, 20, 0.35);
  backdrop-filter: blur(8px);
  transition: all 0.5s ease;
}


#painel-confluencia.suporte-proximo {
  background: linear-gradient(145deg, rgba(0, 255, 136, 0.15), rgba(0, 0, 0, 0.4));
  border: 2px solid #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.7), inset 0 0 10px rgba(0, 255, 136, 0.3);
  animation: pulsarVerde 2s infinite;
}


#painel-confluencia.resistencia-proxima {
  background: linear-gradient(145deg, rgba(255, 68, 68, 0.15), rgba(0, 0, 0, 0.4));
  border: 2px solid #ff4444;
  box-shadow: 0 0 20px rgba(255, 68, 68, 0.7), inset 0 0 10px rgba(255, 68, 68, 0.3);
  animation: pulsarVermelho 2s infinite;
}


#painel-confluencia.lateral {
  background: linear-gradient(145deg, rgba(255, 221, 87, 0.15), rgba(0, 0, 0, 0.4));
  border: 2px solid #ffd700;
  box-shadow: 0 0 15px rgba(255, 221, 87, 0.6), inset 0 0 8px rgba(255, 221, 87, 0.3);
  animation: none;
}


@keyframes pulsarVerde {
  0% {
    box-shadow: 0 0 14px rgba(0, 255, 136, 0.4);
  }

  50% {
    box-shadow: 0 0 32px rgba(0, 255, 136, 1);
  }

  100% {
    box-shadow: 0 0 14px rgba(0, 255, 136, 0.4);
  }
}

@keyframes pulsarVermelho {
  0% {
    box-shadow: 0 0 14px rgba(255, 68, 68, 0.4);
  }

  50% {
    box-shadow: 0 0 32px rgba(255, 68, 68, 1);
  }

  100% {
    box-shadow: 0 0 14px rgba(255, 68, 68, 0.4);
  }
}


@media (max-width: 768px) {
  #painel-confluencia {
    width: 95% !important;
    max-width: 480px;
    margin: 10px auto;
    padding: 12px;
    text-align: center;
    height: auto !important;
    position: relative;
  }
}


#painel-config .config-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  
  gap: 12px;
  align-items: center;
}


@media (max-width: 768px) {
  #painel-config .config-grid {
    grid-template-columns: 1fr 1fr;
    
    gap: 10px;
  }

  #painel-config .field.actions {
    grid-column: span 2;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  #painel-config .field.actions button {
    flex: 1 1 45%;
    
    min-width: 120px;
    font-size: 14px;
    padding: 8px 10px;
  }
}


.bloco {
  background: rgba(10, 25, 47, 0.85);
  
  border-radius: 12px;
  padding: 15px;
  margin: 10px 0;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(0, 255, 255, 0.3);
  
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5),
    inset 0 0 8px rgba(0, 255, 255, 0.3);
  
  transition: all 0.3s ease-in-out;
}


.bloco:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.8),
    inset 0 0 12px rgba(0, 255, 255, 0.5);
  transform: scale(1.02);
}


.bloco-preco {
  background: radial-gradient(circle, rgba(255, 255, 0, 0.15), rgba(0, 0, 0, 0.9));
  border: 2px solid rgba(255, 255, 0, 0.8);
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.7),
    inset 0 0 15px rgba(255, 255, 0, 0.4);
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFD700;
}


@media (max-width: 768px) {
  .bloco {
    margin: 12px auto;
    width: 95%;
    
  }

  .bloco-preco {
    font-size: 1.1rem;
  }
}



input:focus,
select:focus {
  outline: none;
  
  border: 2px solid #00e5ff;
  
  box-shadow: 0 0 15px #00e5ff, 0 0 30px #00e5ff;
  
  background-color: rgba(0, 20, 40, 0.9);
  
  color: #fff;
  
  transition: all 0.3s ease-in-out;
}


#intervalo {
  background: rgba(0, 0, 0, 0.8);
  
  color: #fff;
  
  border: 2px solid #00e5ff;
  
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 0 12px #00e5ff, 0 0 25px #00e5ff;
  
  transition: all 0.3s ease-in-out;
  appearance: none;
  
  cursor: pointer;
}


#intervalo:hover {
  background: rgba(0, 20, 40, 0.95);
  box-shadow: 0 0 18px #00f7ff, 0 0 35px #00f7ff;
}


#intervalo:focus {
  outline: none;
  border-color: #00f7ff;
  box-shadow: 0 0 20px #00f7ff, 0 0 40px #00f7ff;
}


#intervalo option {
  background: #0a0a0a;
  
  color: #fff;
  
  font-weight: bold;
  padding: 10px;
  border: none;
}


#intervalo option:hover {
  background: #00e5ff;
  color: #000;
  
}




#painel-config select,
#painel-config input[type="number"] {
  background: rgba(0, 0, 0, 0.8);
  
  color: #fff;
  
  border: 2px solid #00e5ff;
  
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  box-shadow: 0 0 12px #00e5ff, 0 0 25px #00e5ff;
  
  transition: all 0.3s ease-in-out;
  appearance: none;
  
}


#painel-config select:hover,
#painel-config input[type="number"]:hover {
  background: rgba(0, 20, 40, 0.95);
  box-shadow: 0 0 18px #00f7ff, 0 0 35px #00f7ff;
}


#painel-config select:focus,
#painel-config input[type="number"]:focus {
  outline: none;
  border-color: #00f7ff;
  box-shadow: 0 0 20px #00f7ff, 0 0 40px #00f7ff;
}


#painel-config select option {
  background: #0a0a0a;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border: none;
}


#painel-config select option:hover {
  background: #00e5ff;
  color: #000;
}


#painel-config input,
#painel-config select {
  background: rgba(10, 15, 25, 0.9);
  
  border: 2px solid #0ff;
  
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
  
}


#painel-config input:focus,
#painel-config select:focus {
  outline: none;
  border-color: #00eaff;
  
  box-shadow: 0 0 12px #00eaff, 0 0 24px rgba(0, 234, 255, 0.6);
  background: rgba(15, 25, 35, 0.95);
  
  color: #00eaff;
  
  animation: neonPulse 1.5s infinite alternate;
  
}


@keyframes neonPulse {
  from {
    box-shadow: 0 0 10px #00eaff, 0 0 20px rgba(0, 234, 255, 0.5);
  }

  to {
    box-shadow: 0 0 20px #00eaff, 0 0 40px rgba(0, 234, 255, 0.9);
  }
}


#painel-config input:hover,
#painel-config select:hover {
  border-color: #00ffff;
  box-shadow: 0 0 15px #00ffff, 0 0 30px rgba(0, 255, 255, 0.7);
}


#painel-config .btn {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}


#painel-config .btn.pausa {
  background: rgba(0, 120, 255, 0.2);
  border-color: #00aaff;
  box-shadow: 0 0 10px #00aaff, 0 0 20px rgba(0, 170, 255, 0.5);
}

#painel-config .btn.pausa:hover,
#painel-config .btn.pausa:focus {
  background: rgba(0, 120, 255, 0.3);
  box-shadow: 0 0 15px #00ccff, 0 0 30px rgba(0, 204, 255, 0.8);
  animation: neonPulse 1.5s infinite alternate;
}


#painel-config .btn.limpar {
  background: rgba(255, 30, 30, 0.2);
  border-color: #ff3333;
  box-shadow: 0 0 10px #ff3333, 0 0 20px rgba(255, 51, 51, 0.5);
}

#painel-config .btn.limpar:hover,
#painel-config .btn.limpar:focus {
  background: rgba(255, 30, 30, 0.3);
  box-shadow: 0 0 15px #ff4444, 0 0 30px rgba(255, 70, 70, 0.9);
  animation: neonPulse 1.5s infinite alternate;
}


#painel-config .btn.som {
  background: rgba(0, 200, 100, 0.2);
  border-color: #00ff88;
  box-shadow: 0 0 10px #00ff88, 0 0 20px rgba(0, 255, 136, 0.5);
}

#painel-config .btn.som:hover,
#painel-config .btn.som:focus {
  background: rgba(0, 200, 100, 0.3);
  box-shadow: 0 0 15px #00ff99, 0 0 30px rgba(0, 255, 150, 0.9);
  animation: neonPulse 1.5s infinite alternate;
}


@keyframes neonPulse {
  from {
    box-shadow: 0 0 10px currentColor, 0 0 20px rgba(255, 255, 255, 0.4);
  }

  to {
    box-shadow: 0 0 20px currentColor, 0 0 40px rgba(255, 255, 255, 0.9);
  }
}




#painel-config .btn.som.ativo {
  background: rgba(0, 200, 100, 0.2);
  border-color: #00ff88;
  color: #fff;
  box-shadow: 0 0 10px #00ff88, 0 0 20px rgba(0, 255, 136, 0.5);
}

#painel-config .btn.som.ativo:hover,
#painel-config .btn.som.ativo:focus {
  background: rgba(0, 200, 100, 0.3);
  box-shadow: 0 0 15px #00ff99, 0 0 30px rgba(0, 255, 150, 0.9);
  animation: neonPulse 1.5s infinite alternate;
}


#painel-config .btn.som.desativado {
  background: rgba(150, 150, 150, 0.15);
  border-color: #aaaaaa;
  color: #bbb;
  box-shadow: 0 0 8px #999, 0 0 18px rgba(180, 180, 180, 0.4);
}

#painel-config .btn.som.desativado:hover,
#painel-config .btn.som.desativado:focus {
  background: rgba(180, 180, 180, 0.25);
  box-shadow: 0 0 12px #aaa, 0 0 25px rgba(200, 200, 200, 0.7);
  animation: neonPulse 1.5s infinite alternate;
}






#msg-confluencia {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #00eaff;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0 8px #00eaff, 0 0 16px rgba(0, 234, 255, 0.6);
  transition: 0.3s;
}

#msg-confluencia:hover {
  box-shadow: 0 0 12px #00eaff, 0 0 24px rgba(0, 234, 255, 0.9);
}


#resumo-confluencia {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #00ff88;
  border-radius: 6px;
  padding: 6px;
  font-size: 14px;
  text-align: center;
  margin-bottom: 8px;
  color: #00ffcc;
  box-shadow: 0 0 6px #00ff88, 0 0 12px rgba(0, 255, 136, 0.6);
}


#ultimo-alerta {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid #ffd700;
  border-radius: 6px;
  padding: 6px;
  font-size: 13px;
  text-align: center;
  color: #ffd700;
  font-weight: bold;
  box-shadow: 0 0 6px #ffd700, 0 0 12px rgba(255, 215, 0, 0.6);
}


.valor-preco {
  color: #FFD700;
  
  text-shadow: 0 0 8px #FFD700, 0 0 12px #FFA500;
  font-weight: bold;
}

.valor-suporte {
  color: #00FF88;
  
  text-shadow: 0 0 8px #00FF88, 0 0 12px #00CC66;
  font-weight: bold;
}

.valor-resistencia {
  color: #FF4444;
  
  text-shadow: 0 0 8px #FF4444, 0 0 12px #FF0000;
  font-weight: bold;
}




#painel-indicadores ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block !important;
  
}

#painel-indicadores li {
  display: flex !important;
  
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 10px;
  border-radius: 10px;
  
}


#painel-indicadores span[id$="-label"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 190px;
  
  color: #cfefff;
  font-weight: 600;
  white-space: nowrap;
}




@media (max-width: 600px) {
  #painel-indicadores span[id$="-label"] {
    min-width: 150px;
  }

  #painel-indicadores li>span:not([id$="-label"]) {
    min-width: 90px;
  }
}


.titulo-premium {
  font-size: 2.8em;
  
  color: #00f0ff;
  text-align: center;
  text-shadow: 0 0 12px #00f0ff, 0 0 24px #0099ff;
  font-weight: bold;
  margin-bottom: 20px;
  animation: pulseGlow 3s infinite ease-in-out;
}


.raio-esq,
.raio-dir {
  display: inline-block;
  font-size: 1.3em;
  margin: 0 10px;
  animation: blink 1.5s infinite;
}


.raio-esq {
  animation-delay: 0s;
}

.raio-dir {
  animation-delay: 0.75s;
  
}


@keyframes pulseGlow {

  0%,
  100% {
    text-shadow: 0 0 12px #00f0ff, 0 0 24px #0099ff;
  }

  50% {
    text-shadow: 0 0 24px #00f0ff, 0 0 48px #0099ff;
  }
}


@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.2);
  }
}








#distancia-dinamica {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-top: 4px;
  display: inline-block;
  filter: brightness(1.05);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}


.distancia-vermelho {
  color: #ff4d4d;
  background: linear-gradient(90deg, #ff6b6b, #ff3d3d, #ff6b6b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 60, 60, 0.5);
  animation: pulsarVermelho 3s ease-in-out infinite;
}


.distancia-amarelo {
  color: #FFD54F;
  background: linear-gradient(90deg, #ffe97d, #ffcc33, #ffe97d);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 213, 79, 0.5);
  animation: pulsarAmarelo 3.5s ease-in-out infinite;
}


.distancia-verde {
  color: #00ff88;
  background: linear-gradient(90deg, #00ff88, #0aff9a, #00ff88);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.45);
  animation: pulsarVerde 4s ease-in-out infinite;
}


@keyframes pulsarVermelho {

  0%,
  100% {
    text-shadow: 0 0 8px rgba(255, 60, 60, 0.4);
    transform: scale(1);
  }

  50% {
    text-shadow: 0 0 14px rgba(255, 40, 40, 0.8);
    transform: scale(1.05);
  }
}

@keyframes pulsarAmarelo {

  0%,
  100% {
    text-shadow: 0 0 8px rgba(255, 213, 79, 0.4);
    transform: scale(1);
  }

  50% {
    text-shadow: 0 0 14px rgba(255, 213, 79, 0.8);
    transform: scale(1.04);
  }
}

@keyframes pulsarVerde {

  0%,
  100% {
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
    transform: scale(1);
  }

  50% {
    text-shadow: 0 0 14px rgba(0, 255, 136, 0.8);
    transform: scale(1.03);
  }
}




.tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 310px;
  background: rgba(10, 20, 35, 0.92);
  color: #E6EEF7;
  text-align: left;
  border-radius: 10px;
  padding: 12px 14px;

  
  position: fixed;
  
  z-index: 9999;
  
  inset: auto;
  
  bottom: auto;
  top: calc(var(--tooltip-top, 0px) - 40px);
  
  left: 50%;
  transform: translateX(-50%) translateY(0);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(120, 200, 255, 0.25);
  font-size: 13px;
  line-height: 1.4em;
  transition: opacity 0.4s ease, transform 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: none;
}


.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
  transition-delay: 0.1s;
}



#painel-debug {
  text-align: center;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
  font-size: 14px;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}


.btn-testar-api {
  display: block;
  margin: 10px auto 15px auto;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #00ff99;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #00ff99;
  border-radius: 8px;
  cursor: pointer;
  text-shadow: 0 0 8px #00ff99;
  box-shadow: 0 0 10px rgba(0, 255, 153, 0.3);
  transition: all 0.25s ease;
}

.btn-testar-api:hover {
  background: rgba(0, 255, 153, 0.15);
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.6);
  transform: scale(1.05);
}

.btn-testar-api:active {
  transform: scale(0.95);
  background: rgba(0, 255, 153, 0.3);
}


.btn-testar-api {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #00ff88;
  color: #00ff88;
  font-weight: bold;
  border-radius: 12px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ff8850;
}


.btn-testar-api:hover {
  background: #00ff88;
  color: #000;
  box-shadow: 0 0 20px #00ff88;
  transform: scale(1.05);
}


@keyframes pulsarBotao {
  0% {
    box-shadow: 0 0 10px #00ff8840;
  }

  50% {
    box-shadow: 0 0 25px #00ff88;
  }

  100% {
    box-shadow: 0 0 10px #00ff8840;
  }
}

.btn-testar-api {
  animation: pulsarBotao 2s infinite;
}




@keyframes glowLucro {
  0% {
    text-shadow: 0 0 10px #00ff88;
  }

  50% {
    text-shadow: 0 0 20px #00ffaa;
  }

  100% {
    text-shadow: 0 0 10px #00ff88;
  }
}


@keyframes glowPrejuizo {
  0% {
    text-shadow: 0 0 10px #ff4444;
  }

  50% {
    text-shadow: 0 0 20px #ff7777;
  }

  100% {
    text-shadow: 0 0 10px #ff4444;
  }
}


.lucro-positivo {
  color: #00ff88;
  animation: glowLucro 2s infinite ease-in-out;
}


.lucro-negativo {
  color: #ff5555;
  animation: glowPrejuizo 2s infinite ease-in-out;
}


#painel-lucro h2 {
  color: #00ccff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}



.distancia-verde {
  color: #22ff88;
  text-shadow: 0 0 8px rgba(34, 255, 136, 0.6);
}

.distancia-amarelo {
  color: #ffd54a;
  text-shadow: 0 0 8px rgba(255, 213, 74, 0.6);
}

.distancia-vermelho {
  color: #ff5b5b;
  text-shadow: 0 0 8px rgba(255, 91, 91, 0.6);
}


@keyframes pulse-neon {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.03);
    filter: brightness(1.25);
  }

  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

.pulse {
  animation: pulse-neon 2s ease-in-out infinite;
}




body {
  background: url("../img/hunterneo_red_dark_lux.jpg") center/cover no-repeat fixed;
  background-color: rgba(20, 0, 0, 0.9);
  
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


.bloco,
#painel-config,
#painel-preco,
#painel-indicadores,
#painel-lucro,
#painel-confluencia {
  background: rgba(255, 255, 255, 0.04);
  
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
}


.bloco:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: scale(1.015);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.75);
}


@media (max-width: 768px) {
  .bloco {
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  }
}


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}


#painel-indicadores .rsi,
#painel-indicadores .macd,
#painel-indicadores .mm9,
#painel-indicadores .mm25,
#painel-indicadores .vol {
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
  font-weight: 600;
}


#painel-indicadores span[id$="-label"] {
  color: #ffffff !important;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}


#painel-indicadores ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#painel-indicadores ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  margin: 6px 0;
  border-radius: 12px;

  
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.05),
    0 0 8px rgba(255, 0, 0, 0.15);
}

#painel-indicadores span {
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  font-weight: 500;
}


#painel-suportes {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  padding: 16px 18px;
}


#painel-suportes p,
#painel-suportes .linha-sr,
#sup-dinamico,
#res-dinamico,
#distancia-dinamica {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;

  padding: 10px 14px;
  margin: 8px 0;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.05),
    0 0 8px rgba(255, 0, 0, 0.15);
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, .28);
  font-weight: 500;
}


#sup-dinamico {
  border-left: 4px solid #00ff88;
}

#res-dinamico {
  border-left: 4px solid #ff5b5b;
}

#distancia-dinamica {
  border-left: 4px solid #ffd54f;
}


#painel-suportes h2 {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, .35);
  margin-bottom: 10px;
}


.bloco,
.bloco-translucido,
#painel-indicadores,
#painel-suportes,
#painel-preco,
#painel-confluencia,
#painel-lucro {
  background: rgba(255, 255, 255, 0.03) !important;
  
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.15),
    inset 0 0 10px rgba(255, 255, 255, 0.03);
}


.bloco h2,
#painel-suportes h2,
#painel-indicadores h2 {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.bloco p,
.bloco span {
  color: #fff !important;
}




.bloco,
.bloco-translucido,
#painel-indicadores,
#painel-suportes,
#painel-lucro,
#painel-preco,
#painel-confluencia {
  background: transparent !important;
  
  backdrop-filter: none !important;
  
  -webkit-backdrop-filter: none !important;

  border: 1px solid rgba(255, 255, 255, 0.12);
  
  border-radius: 18px;

  
  box-shadow:
    0 0 18px rgba(255, 0, 0, 0.15),
    inset 0 0 10px rgba(255, 255, 255, 0.05);

  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}


.bloco::before,
#painel-indicadores::before,
#painel-suportes::before,
#painel-preco::before,
#painel-lucro::before,
#painel-confluencia::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 80, 80, 0.25);
  box-shadow:
    0 0 10px rgba(255, 60, 60, 0.2),
    0 0 20px rgba(255, 0, 0, 0.25);
  opacity: 0.6;
  animation: luxPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}


@keyframes luxPulse {

  0%,
  100% {
    opacity: 0.6;
    box-shadow:
      0 0 10px rgba(255, 80, 80, 0.2),
      0 0 20px rgba(255, 0, 0, 0.25);
  }

  50% {
    opacity: 0.9;
    box-shadow:
      0 0 20px rgba(255, 100, 100, 0.35),
      0 0 30px rgba(255, 0, 0, 0.4);
  }
}


.bloco:hover,
#painel-indicadores:hover,
#painel-suportes:hover,
#painel-preco:hover,
#painel-lucro:hover,
#painel-confluencia:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 25px rgba(255, 0, 0, 0.25),
    inset 0 0 15px rgba(255, 255, 255, 0.08);
}


.bloco h2,
#painel-indicadores h2,
#painel-suportes h2 {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.bloco p,
.bloco span,
.bloco li,
#painel-suportes span {
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}



#painel-suportes,
#painel-indicadores,
.grid-section,
section,
main,
body {
  overflow: visible !important;
  
}

.tooltip {
  z-index: 9999 !important;
  
}

.tooltip .tooltip-text {
  position: absolute !important;
  z-index: 99999 !important;
  
  pointer-events: none;
}




#indicadores-intervalo .head-int {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 4px 0 8px;
}


#indicadores-intervalo .pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, .25);
  font-weight: 600;
  letter-spacing: .2px;
}


#indicadores-intervalo .atualizado {
  opacity: .85;
  font-size: .95rem;
}


#macd-intervalo.bull {
  color: #00ffa6;
  text-shadow: 0 0 6px rgba(0, 255, 166, .35);
}

#macd-intervalo.bear {
  color: #ff4d4d;
  text-shadow: 0 0 6px rgba(255, 77, 77, .35);
}

#macd-intervalo.neutral {
  color: #ddd;
}


#indicadores-intervalo .lista-indicadores {
  list-style: none;
  padding: 0;
  margin: 0;
}

#indicadores-intervalo .item-indicador {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 6px;
  transition: all .3s ease;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, .05);
}

#indicadores-intervalo .item-indicador:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

#indicadores-intervalo .label {
  font-weight: 500;
  color: #fff;
  opacity: .85;
  font-size: .95rem;
}

#indicadores-intervalo .valor {
  font-weight: 600;
  font-size: .95rem;
  color: #00ffcc;
  text-shadow: 0 0 8px rgba(0, 255, 204, .4);
}


.bar-int {
  width: 100%;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, .25);
}


.bar-int i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: all .35s ease;
  
  background: linear-gradient(90deg, #00ffa6, #00d1ff);
  filter: drop-shadow(0 0 6px rgba(0, 255, 166, .5));
}


.bar-int i.bull {
  background: linear-gradient(90deg, #00ffa6, #00d1ff);
  filter: drop-shadow(0 0 8px rgba(0, 255, 166, .45)) drop-shadow(0 0 14px rgba(0, 209, 255, .35));
}

.bar-int i.bear {
  background: linear-gradient(90deg, #ff7a7a, #ff3b3b);
  filter: drop-shadow(0 0 8px rgba(255, 90, 90, .45)) drop-shadow(0 0 14px rgba(255, 30, 30, .35));
}

.bar-int i.neutral {
  background: linear-gradient(90deg, #bdbdbd, #8f8f8f);
  filter: drop-shadow(0 0 6px rgba(180, 180, 180, .35)) drop-shadow(0 0 12px rgba(150, 150, 150, .25));
}


.bar-int i.pulse {
  animation: pulseNeonPower 1.6s ease-in-out infinite;
}

@keyframes pulseNeonPower {

  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(0, 255, 166, .35)) drop-shadow(0 0 12px rgba(0, 209, 255, .25));
  }

  50% {
    filter: drop-shadow(0 0 14px rgba(0, 255, 166, .8)) drop-shadow(0 0 22px rgba(0, 209, 255, .55));
  }
}




#indicadores-intervalo h3 {
  font-size: 1.05rem;
  
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #ffffff;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;

  
  text-shadow:
    0 0 6px rgba(255, 100, 0, 0.45),
    0 0 12px rgba(255, 60, 0, 0.25);
  animation: glowImpulse 2.8s ease-in-out infinite;
}


@keyframes glowImpulse {

  0%,
  100% {
    text-shadow:
      0 0 6px rgba(255, 100, 0, 0.45),
      0 0 12px rgba(255, 60, 0, 0.25);
  }

  50% {
    text-shadow:
      0 0 10px rgba(255, 120, 0, 0.7),
      0 0 18px rgba(255, 60, 0, 0.45);
  }
}


#indicadores-intervalo h3::before {
  content: "🔥";
  font-size: 1.15rem;
  filter: drop-shadow(0 0 4px rgba(255, 120, 0, 0.6));
}


#vwap-status {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}


#vwap-status.vwap-barato {
  color: #00ff88 !important;
  text-shadow:
    0 0 6px rgba(0, 255, 136, 0.7),
    0 0 16px rgba(0, 255, 136, 0.5);
}


#vwap-status.vwap-justo {
  color: #ffd700 !important;
  text-shadow:
    0 0 6px rgba(255, 215, 0, 0.7),
    0 0 16px rgba(255, 215, 0, 0.45);
}


#vwap-status.vwap-caro {
  color: #ff5555 !important;
  text-shadow:
    0 0 6px rgba(255, 85, 85, 0.8),
    0 0 16px rgba(255, 85, 85, 0.55);
}




#hnwr-radar {
  padding: 12px;
  border-radius: 14px;
  background: rgba(10, 14, 20, .55);
  border: 1px solid rgba(0, 255, 200, .18);
  backdrop-filter: blur(8px);
  color: #eaf6ff;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}


#hnwr-radar .hnwr-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

#hnwr-radar .hnwr-title {
  font-weight: 700;
  background: linear-gradient(90deg, #86f3ff, #19d3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


#hnwr-radar .hnwr-badge {
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .2px;
  border: 1px solid rgba(255, 255, 255, .14);
}


#hnwr-radar .hnwr-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 6px 0 8px;
  color: #cfe3ee;
}


#hnwr-radar .hnwr-bar {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, .25);
}

#hnwr-radar .hnwr-bar i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width .35s ease;
}


#hnwr-radar .hnwr-msg {
  margin: 6px 0 0;
  color: #b7c7d1;
}




#hnwr-radar .hnwr-badge.z0 {
  color: #f3f3f3;
  background: rgba(255, 255, 255, .08);
  text-shadow: 0 0 8px rgba(255, 255, 255, .35);
  animation: hnwrPulseNeutral 3.5s ease-in-out infinite;
}


#hnwr-radar .hnwr-badge.z1 {
  color: #ff5b5b;
  background: rgba(255, 80, 80, .14);
  text-shadow: 0 0 10px rgba(255, 80, 80, .55);
  border-color: rgba(255, 90, 90, .35);
  animation: hnwrPulseRed 1.8s ease-in-out infinite;
}


#hnwr-radar .hnwr-badge.z2 {
  color: #ffb74d;
  background: rgba(255, 183, 77, .13);
  text-shadow: 0 0 10px rgba(255, 183, 77, .55);
  border-color: rgba(255, 183, 77, .35);
  animation: hnwrPulseOrange 2.2s ease-in-out infinite;
}


#hnwr-radar .hnwr-badge.z3 {
  color: #ffd54f;
  background: rgba(255, 213, 79, .12);
  text-shadow: 0 0 10px rgba(255, 213, 79, .55);
  border-color: rgba(255, 213, 79, .35);
  animation: hnwrPulseYellow 2.6s ease-in-out infinite;
}


#hnwr-radar .hnwr-badge.z4 {
  color: #00ff88;
  background: rgba(0, 255, 136, .12);
  text-shadow: 0 0 10px rgba(0, 255, 136, .55);
  border-color: rgba(0, 255, 136, .35);
  animation: hnwrPulseGreen 2.0s ease-in-out infinite;
}


#hnwr-radar .hnwr-badge.z0~.hnwr-bar i {
  background: linear-gradient(90deg, #cfcfcf, #8f8f8f);
}

#hnwr-radar .hnwr-badge.z1~.hnwr-bar i {
  background: linear-gradient(90deg, #ff7a7a, #ff3b3b);
}

#hnwr-radar .hnwr-badge.z2~.hnwr-bar i {
  background: linear-gradient(90deg, #ffcc80, #ff8a65);
}

#hnwr-radar .hnwr-badge.z3~.hnwr-bar i {
  background: linear-gradient(90deg, #ffe082, #ffd54f);
}

#hnwr-radar .hnwr-badge.z4~.hnwr-bar i {
  background: linear-gradient(90deg, #00ff88, #00d1ff);
}


@keyframes hnwrPulseNeutral {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, .18);
  }

  50% {
    box-shadow: 0 0 22px rgba(255, 255, 255, .35);
  }
}

@keyframes hnwrPulseRed {

  0%,
  100% {
    box-shadow: 0 0 14px rgba(255, 80, 80, .25), 0 0 28px rgba(255, 40, 40, .12);
  }

  50% {
    box-shadow: 0 0 34px rgba(255, 80, 80, .55), 0 0 60px rgba(255, 40, 40, .22);
  }
}

@keyframes hnwrPulseOrange {

  0%,
  100% {
    box-shadow: 0 0 14px rgba(255, 183, 77, .22);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 183, 77, .55);
  }
}

@keyframes hnwrPulseYellow {

  0%,
  100% {
    box-shadow: 0 0 14px rgba(255, 213, 79, .20);
  }

  50% {
    box-shadow: 0 0 28px rgba(255, 213, 79, .55);
  }
}

@keyframes hnwrPulseGreen {

  0%,
  100% {
    box-shadow: 0 0 14px rgba(0, 255, 136, .22), 0 0 28px rgba(0, 209, 255, .12);
  }

  50% {
    box-shadow: 0 0 34px rgba(0, 255, 136, .55), 0 0 60px rgba(0, 209, 255, .22);
  }
}




#hnwr-radar .hnwr-bar,
#hnwr-bar-wrap {
  height: 8px !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.10) !important;
}


#hnwr-bar {
  display: block !important;
  height: 8px !important;
  
  width: 0%;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #cfd8dc, #ffffff) !important;
  
  transition: width .35s ease, filter .35s ease;
}




#hnwr-bar {
  height: 8px;
  border-radius: 999px;
  transition: width .35s ease, background .35s ease, box-shadow .35s ease;
}


#hnwr-bar.z1 {
  background: linear-gradient(90deg, #ff6b6b, #ff1e1e);
  box-shadow: 0 0 12px rgba(255, 60, 60, 0.7);
}


#hnwr-bar.z2 {
  background: linear-gradient(90deg, #ffb347, #ff9800);
  box-shadow: 0 0 12px rgba(255, 170, 60, 0.6);
}


#hnwr-bar.z3 {
  background: linear-gradient(90deg, #ffe066, #ffd000);
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.7);
}


#hnwr-bar.z4 {
  background: linear-gradient(90deg, #00ff99, #00c853);
  box-shadow: 0 0 14px rgba(0, 255, 153, 0.7);
}


#hnwr-bar.z0 {
  background: linear-gradient(90deg, #cfd8dc, #ffffff);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

:root {
  --hn-brand: "𝙷" "𝚄" "𝙽" "𝚃" "𝙴" "𝚁";
}

html body::after {
  content: var(--hn-brand);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Orbitron", sans-serif;
  font-size: 12vw;
  font-weight: 800;
  letter-spacing: 18px;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
