.coming-soon-page {
  font-family: 'Caudex', serif;
  color: #f4f4f4;
}

.centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon .soon-icon {
  font-size: 3.5rem;
  color: #50C878;
  text-shadow: 0 0 8px rgba(80, 200, 120, 0.6),
               0 0 16px rgba(80, 200, 120, 0.4),
               0 0 24px rgba(80, 200, 120, 0.3);
  margin-bottom: 0.5rem;
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 8px rgba(80, 200, 120, 0.6),
                 0 0 16px rgba(80, 200, 120, 0.4),
                 0 0 24px rgba(80, 200, 120, 0.3);
  }
  50% {
    text-shadow: 0 0 12px rgba(80, 200, 120, 0.8),
                 0 0 20px rgba(80, 200, 120, 0.6),
                 0 0 28px rgba(80, 200, 120, 0.4);
  }
}

.coming-soon h1 {
  font-size: 2.5rem;
  color: #50C878;
  text-shadow: 0 0 8px rgba(80, 200, 120, 0.6);
  margin-bottom: 1rem;
}

.soon-message {
  font-size: 1.2rem;
  background: rgba(80, 200, 120, 0.08);
  border: 1px solid rgba(80, 200, 120, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: inline-block;
}

/* CTA Buttons – exact match to Beliefs/Deities */
.cta-container { margin: 40px 0; }
.cta-container:not(.bottom-nav) { text-align: center; }

.cta-container.bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  max-width: 700px;
  margin: 2rem auto 4rem;
  padding: 0;
}

.cta-button {
  flex: 1 1 0;
  padding: 14px 0;
  min-width: 160px;
  text-align: center;
  font-size: 1.1rem;
  font-family: 'Cinzel', serif;
  color: #eaeaea;
  background: linear-gradient(135deg, #0a0f0a, #133d29);
  border: 2px solid #2ecc71;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.4), inset 0 0 8px rgba(46, 204, 113, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
}

.cta-button:hover::before { animation: shimmer 1.5s ease forwards; }

@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}

.cta-button:hover {
  color: #fff;
  background: linear-gradient(135deg, #133d29, #1a6b47);
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.8), inset 0 0 12px rgba(46, 204, 113, 0.5);
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.6), inset 0 0 6px rgba(46, 204, 113, 0.4);
}

@media (max-width: 600px) {
  .cta-container.bottom-nav {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .cta-button {
    width: 100%;
    padding: 0.75rem 1rem;
    line-height: 1.4;
    min-height: 48px;
    display: flex; align-items: center; justify-content: center;
  }
}
