/* =======================
   BASE
   ======================= */

body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-top: 60px;
  letter-spacing: 3px;
}

p {
  font-size: 1.1rem;
}

/* =======================
   PORTAL PAGE (HOME)
   ======================= */

.portal-body {
  background: black;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  padding-top: 120px;
}

.portal-container {
  max-width: 700px;
  margin: auto;
}

.portal-sub {
  margin-top: 10px;
  font-size: 18px;
  color: #bbbbbb;
}

/* Neon green enter button */
.enter-button {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 28px;
  border: 2px solid #39FF14;
  border-radius: 8px;
  color: #39FF14;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 2px;
  transition: 0.25s ease-in-out;
  box-shadow: 0 0 12px #39ff1480;
}

.enter-button:hover {
  background-color: #39FF14;
  color: black;
  box-shadow: 0 0 22px #39ff14cc, 0 0 40px #39ff1480;
  transform: scale(1.05);
}

/* =======================
   MANIFESTO PAGE
   ======================= */

.manifesto-body {
  background: black;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 40px 16px 80px 16px;
}

.manifesto-main {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto-line {
  margin-top: 40px;
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
}

.construction-note {
  margin-top: 40px;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* =======================
   GLOBE OVERLAY
   ======================= */

.globe-outer {
  position: fixed;
  width: 340px;
  height: 340px;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: grab;
  z-index: 2;
}

.globe-outer.dragging {
  cursor: grabbing;
  filter: drop-shadow(0 0 18px rgba(255, 160, 120, 0.75));
}

.globe {
  width: 100%;
  height: 100%;
}

/* Make the canvas fill the globe */
.globe canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .globe-outer {
    width: 260px;
    height: 260px;
    top: 60%;
  }

  .manifesto-line {
    font-size: 1.05rem;
  }

  .construction-note {
    font-size: 0.9rem;
  }
}

/* =======================
   NEON CHAPELS SIGNUP BLOCK
   ======================= */

.neon-signup-wrapper {
  margin-top: 60px;
  padding: 26px 22px;
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(255, 180, 120, 0.35);
  border-radius: 10px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 20px rgba(255, 150, 90, 0.18);
  backdrop-filter: blur(4px);
}

.neon-signup-title {
  font-size: 1.6rem;
  color: #ffddb8;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-shadow: 0 0 6px rgba(255, 180, 120, 0.6);
}

.neon-signup-sub {
  font-size: 0.98rem;
  color: #ccaa88;
  opacity: 0.85;
  margin-top: 4px;
}

/* Mailchimp form area */

.neon-mailchimp {
  margin-top: 24px;
}

/* Turn the default button neon */
#mc-embedded-subscribe {
  background: none;
  border: 2px solid #ffb36b;
  color: #ffb36b;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 0 12px rgba(255, 165, 95, 0.25);
}

#mc-embedded-subscribe:hover {
  background: #ffb36b;
  color: black;
  box-shadow: 0 0 25px rgba(255, 165, 95, 0.6),
              0 0 45px rgba(255, 120, 60, 0.4);
  transform: scale(1.04);
}

/* Make MC fields darker */
#mc_embed_signup input[type="email"] {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 180, 120, 0.25);
  padding: 10px;
  color: #ffddb8;
}

#mc_embed_signup label {
  color: #ffddb8;
  font-size: 0.95rem;
  opacity: 0.9;
}
