.KURNIA99 {
  width: 100%;
  display: block;
  color: #ffecec;
  text-shadow: 0 0 3px #a30000;
  margin: auto;
  margin-top: 3px;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  border: 2px solid #8b0000;
  animation: redflare 2.5s ease-in-out infinite;
  box-shadow: 0 0 6px #8b0000, 0 0 14px #a83232;
  background: linear-gradient(90deg, #7a0000, #9c1c1c, #7a0000);
  text-decoration: none;
}

@keyframes redflare {
  0% { background: linear-gradient(90deg, #7a0000, #9c1c1c, #7a0000); border-color: #7a0000; box-shadow: 0 0 6px #7a0000, 0 0 12px #a83232; }
  50% { background: linear-gradient(90deg, #9c1c1c, #b03030, #9c1c1c); border-color: #a83232; box-shadow: 0 0 8px #a83232, 0 0 16px #7a0000; }
  100% { background: linear-gradient(90deg, #7a0000, #9c1c1c, #7a0000); border-color: #7a0000; box-shadow: 0 0 6px #7a0000, 0 0 12px #a83232; }
}

.blinking {
  animation: blinktext 1.6s infinite alternate;
  font-weight: 900;
  color: #ffb3b3;
  text-shadow: 0 0 3px #7a0000;
}

@keyframes blinktext {
  0% { opacity: 1; }
  100% { opacity: 0.7; }
}