body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/spiritual.png") center/cover no-repeat;
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  z-index: -1;
  pointer-events: none;
}
.under-construction {
  margin: 20px auto;
}
.under-construction img {
  height: 120px;
  width: auto;
  border: none;
  border-radius: 12px;
  margin-bottom: 30px;
}
.main-button {
  text-align: center;
  margin: 0;
  z-index: 10;
  margin-top: 20px;
}
.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;
}
/* Alchemist / mage name style */
.alquimista {
  font-family: 'Uncial Antiqua', 'Dancing Script', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  color: #ebd9a3; /* parchment gold */
  margin: 25px 0 10px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.18), 0 10px 26px rgba(106,63,160,0.10);
}
.spiritual-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Dancing Script', 'Uncial Antiqua', serif;
  font-size: 1.45rem; /* slightly reduced from previous change */
  color: #efe8ff; /* pale lavender */
  background: linear-gradient(135deg, rgba(106,63,160,0.06), rgba(240,230,200,0.03));
  padding: 0 12px;
  height: 44px;
  min-width: 150px; /* smaller, less wide */
  box-sizing: border-box;
  border-radius: 14px;
  border: 1px solid rgba(106,63,160,0.12);
  text-decoration: none;
  margin: 16px 0 !important;
  box-shadow: 0 10px 26px rgba(106,63,160,0.06), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}
.spiritual-link + p {
  margin: 14px 0 !important;
  line-height: 0.6 !important;
}

@media (max-width: 480px) {
  .spiritual-link {
    min-width: 140px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
    padding: 0 10px !important;
  }
}
.spiritual-link:hover,
.spiritual-link:focus {
  transform: translateY(-4px);
  color: #fff;
  background: linear-gradient(135deg, rgba(106,63,160,0.16), rgba(240,230,200,0.10));
  box-shadow: 0 18px 48px rgba(106,63,160,0.18), 0 0 28px rgba(178,154,207,0.08);
  outline: none;
}
.spiritual-link:active {
  transform: translateY(-1px) scale(0.995);
}

/* Facebook-styled spiritual link */
.spiritual-link.fb {
  color: #ffffff;
  background: linear-gradient(180deg, #1e73be 0%, #1877f2 100%);
  border-color: rgba(24,119,242,0.22);
  box-shadow: 0 10px 28px rgba(24,119,242,0.10), inset 0 1px 0 rgba(255,255,255,0.04);
}
.spiritual-link.fb:hover,
.spiritual-link.fb:focus {
  background: linear-gradient(180deg, #155db0 0%, #0f4fc0 100%);
  box-shadow: 0 20px 54px rgba(24,119,242,0.18), 0 0 28px rgba(24,119,242,0.06);
}

/* Instagram-styled spiritual link (pink → yellow) */
.spiritual-link.ig {
  color: #ffffff;
  background: linear-gradient(45deg, #ff6a95 0%, #ffd54a 100%);
  border-color: rgba(255,106,149,0.16);
  box-shadow: 0 10px 28px rgba(255,106,149,0.10), inset 0 1px 0 rgba(255,255,255,0.04);
}
.spiritual-link.ig:hover,
.spiritual-link.ig:focus {
  background: linear-gradient(45deg, #ff4a7a 0%, #ffd12a 100%);
  box-shadow: 0 20px 54px rgba(255,106,149,0.18), 0 0 28px rgba(255,213,74,0.06);
}
.spiritual-quote {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: #b29acf; /* spiritual purple */
  margin: 2px 0;
  text-shadow: 0 8px 26px rgba(106,63,160,0.16), 0 0 34px rgba(106,63,160,0.08);
}

.spiritual-quote1 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fcf9f9; /* spiritual purple */
  margin: 1px 0;
  text-shadow: 0 8px 26px rgba(106,63,160,0.16), 0 0 34px rgba(106,63,160,0.08);
  margin-top: 40px;
  margin-bottom: 40px;
}
.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);
}
html, body {
  /* allow page to grow and scroll on small screens */
  height: auto !important;
  min-height: 100%;
}
body {
  position: relative;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
.main-button {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  gap: 12px;
}
.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;
}