/* Protetor tela estilos inline para garantir prioridade */
#age-protector {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.85);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  text-align: center;
  padding: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#age-protector h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ff0000;
  text-shadow:
    0 0 5px #ff0000,
    0 0 10px #ff0000;
}
#age-protector p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 320px;
}
#age-protector button {
  background: none;
  border: 2px solid #ff0000;
  color: #ff0000;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  box-shadow:
    0 0 5px #ff0000,
    0 0 10px #ff0000;
  transition: background-color 0.3s, color 0.3s;
}
#age-protector button:hover {
  background-color: #ff0000;
  color: black;
}