:root {
  --bg: #050505;
  --bg-soft: #0d0d10;
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.72);
  --text-soft: rgba(255, 255, 255, 0.5);
  --pink: #ff006e;
  --violet: #8338ec;
  --border: rgba(255, 255, 255, 0.08);
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top, rgba(131, 56, 236, 0.1), transparent 30%),
    radial-gradient(circle at bottom, rgba(255, 0, 110, 0.08), transparent 35%),
    var(--bg);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.coming-page {
  min-height: 100vh;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 110, 0.35);
  background: rgba(255, 0, 110, 0.08);
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.main-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.5rem, 11vw, 9rem);
  line-height: 0.95;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-shadow: 0 0 24px rgba(255, 0, 110, 0.18);
}

.main-text {
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
}

.status-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 22px;
  margin-bottom: 34px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--pink), var(--violet));
  box-shadow: 0 0 16px rgba(255, 0, 110, 0.7);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

.status-text {
  color: var(--white);
  font-weight: 600;
  font-size: 0.98rem;
}

.action-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 42px;
}

.btn {
  min-width: 220px;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(45deg, var(--pink), var(--violet));
  box-shadow: 0 12px 28px rgba(255, 0, 110, 0.28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.info-cards {
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  padding: 24px 20px;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.info-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--pink);
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.info-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(10px);
  opacity: 0.9;
}

.orb-1 {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -40px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.35), transparent 68%);
}

.orb-2 {
  width: 260px;
  height: 260px;
  right: -80px;
  top: 12%;
  background: radial-gradient(
    circle,
    rgba(131, 56, 236, 0.28),
    transparent 68%
  );
}

.orb-3 {
  width: 320px;
  height: 320px;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 0, 110, 0.18), transparent 68%);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

@media (max-width: 900px) {
  body {
    overflow-y: auto;
  }

  .coming-page {
    padding: 40px 18px 60px;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .action-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .status-box {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
