@keyframes dauntoto-glow { 
  0% { filter: drop-shadow(0 0 10px #ff0000); } 
  25% { filter: drop-shadow(0 0 10px #00ff00); } 
  50% { filter: drop-shadow(0 0 10px #0000ff); } 
  75% { filter: drop-shadow(0 0 10px #ffff00); } 
  100% { filter: drop-shadow(0 0 10px #ff0000); } 
}

.dauntoto-logo { 
  width: 300px !important; 
  height: 90px !important; 
  margin: 0px auto !important; 
  display: block !important; 
  object-fit: contain !important; 
  animation: 2s infinite dauntoto-glow !important; 
}

.dauntoto-header { 
  grid-area: appbar !important; 
  height: 90px !important; 
  display: grid !important; 
  place-items: center !important; 
}

@media only screen and (max-width: 1000px) { 
  .dauntoto-logo { 
    width: 280px; 
    height: auto; 
  } 
  .dauntoto-header { 
    height: 100px; 
  }
}

/* Modal styling untuk conversion */
.dauntoto-modal .modal-dialog { 
  background: #000; 
  border: 3px solid #ab0102; 
  border-radius: 10px; 
  margin-top: 15px !important;
}

.dauntoto-modal .modal-content { 
  text-align: center !important; 
  padding: 8px !important;
  background-color: #fff0 !important; 
  cursor: pointer !important; 
  border: 0 !important;
}