* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {

  min-height: 100vh;
  background:
    radial-gradient(circle at center, rgba(120, 0, 0, 0.28), transparent 45%),
    linear-gradient(180deg, #070000 0%, #000000 70%);
  color: white;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;

}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 60px;
  text-align: center;
}

.coming-soon {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: #b80000;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-shadow:
    0 0 8px #ff0000,
    0 0 18px #7a0000,
    4px 4px 0 #000;
  animation: pulseGlow 2.4s infinite ease-in-out;
}

.image-wrap {
  max-width: 450px;
  width: min(82vw, 650px);
  border-radius: 18px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 0, 0, 0.35), rgba(255, 120, 0, 0.15), rgba(0, 0, 0, 0.9));
  box-shadow:
    0 0 35px rgba(255, 0, 0, 0.45),
    0 0 90px rgba(130, 0, 0, 0.45);
}

.image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.tagline {
  margin-top: 22px;
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #cfcfcf;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #000;
}

.discord-button {
  margin-top: 22px;
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(180deg, #ff1a1a, #8b0000);
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 80, 80, 0.8);
  border-radius: 10px;
  box-shadow:
    0 0 18px rgba(255, 0, 0, 0.55),
    inset 0 0 12px rgba(255, 255, 255, 0.12);
  transition: 0.2s ease;
}

.discord-button:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(180deg, #ff3a3a, #b00000);
  box-shadow:
    0 0 26px rgba(255, 0, 0, 0.8),
    inset 0 0 12px rgba(255, 255, 255, 0.16);
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    text-shadow:
      0 0 6px #ff0000,
      0 0 12px #7a0000,
      2px 2px 0 #000;
  }

  50% {
    transform: scale(1.025);
    text-shadow:
      0 0 10px #ff1a1a,
      0 0 20px #b00000,
      2px 2px 0 #000;
  }
}

@media (max-height: 760px) {
  .coming-soon {
    font-size: clamp(2.4rem, 7vw, 5rem);
    margin-bottom: 15px;
  }

  .image-wrap {
    width: min(82vw, 720px);
  }

  .tagline {
    margin-top: 14px;
  }
}