body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/hh_preview.png") center/cover no-repeat;
  z-index: -2;
}

body {
  text-align: center;
  color: var(--cyber-blue);
  font-family: 'Orbitron', sans-serif;
  margin-top: 80px;
    background: none;
}
p {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 14px 0;
  letter-spacing: 1px;
  opacity: 1;
  text-shadow: none;
}
p:first-of-type {
  font-size: 2rem;
  margin-bottom: 40px;
}
/* Natural healing styles for key labels */
.hh-title {
  font-family: 'Poppins', 'Lato', sans-serif;
  color: #1a5f2b; /* stronger deep green */
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 8px rgba(31,79,43,0.08);
  font-style: italic;
  margin-bottom: 0px;
}
.hh-title1 {
  font-family: 'Poppins', 'Lato', sans-serif;
  color: #1a5f2b; /* stronger deep green */
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 8px rgba(31,79,43,0.08);
  margin-top: 1px;
}
.hh-complete {
  font-family: 'Poppins', 'Lato', sans-serif;
  color: #18c2d8; /* stronger yellow-green */
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0px;
  text-shadow: 0 2px 8px rgba(107,155,0,0.06);
  will-change: transform;
  animation: hhPulse 2.8s ease-in-out 600ms infinite,
             cyberGlow 3s infinite ease-in-out;
}
.hh-publishing {
  font-family: 'Poppins', 'Lato', sans-serif;
  color: #c5bb2b; /* stronger olive-yellow */
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 18px;
  text-shadow: 0 2px 8px rgba(139,159,16,0.05);
  font-style: italic;
}

@keyframes hhPulse {
  0% { transform: translateY(0) scale(1); box-shadow: 0 6px 18px rgba(107,155,0,0.06); }
  45% { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px rgba(107,155,0,0.14); }
  100% { transform: translateY(0) scale(1); box-shadow: 0 6px 18px rgba(107,155,0,0.06); }
}
p:nth-of-type(1),
p:nth-of-type(1),

p:nth-of-type(1) {
  font-style: italic;
  opacity: 0.9;
  text-shadow: 0 0 6px var(--cyber-blue-mid);
}
.under-construction {
  margin: 20px auto;
}
.under-construction img {
  height: 120px;
  width: auto;
  border: none;
  border-radius: 12px;
  margin-bottom: 0px;
}
.main-button {
  text-align: center;
  z-index: 10;
}
.main-button a {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--cyber-blue);
  border-radius: 12px;
  color: var(--cyber-blue);
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: none;
  animation: cyberGlow 3s infinite ease-in-out;
  box-shadow: 0 0 10px var(--cyber-blue);
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}
.main-button a:hover {
  color: var(--cyber-blue-mid);
  box-shadow:
    0 0 16px var(--cyber-blue),
    0 0 32px var(--cyber-blue-mid);
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.05);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
