:root {
  --bg: #0a0b12;
  --bg-2: #0f1220;
  --accent: #7b5cff;
  --accent-2: #3da9ff;
  --text: #f5f7ff;
  --muted: #b8c0d9;
  --card: rgba(20, 24, 40, 0.7);
  --glow: 0 0 20px rgba(123, 92, 255, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(1200px 800px at 20% 10%, #1b1f3a 0%, transparent 60%),
    linear-gradient(120deg, #07080f 0%, #0b0f20 40%, #090b16 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px 80px;
  position: relative;
  z-index: 1;
}

.hero {
  width: min(980px, 100%);
  text-align: center;
  display: grid;
  gap: 24px;
  animation: fadeUp 1.2s ease forwards;
}

.logo-wrap {
  display: grid;
  place-items: center;
  animation: float 4s ease-in-out infinite;
}

.logo {
  width: min(220px, 60vw);
  filter: drop-shadow(0 0 18px rgba(123, 92, 255, 0.45));
}

.content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.content h2 {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 500;
  color: var(--muted);
  margin-top: 10px;
}

.content p {
  max-width: 720px;
  margin: 16px auto 0;
  color: #cdd4ec;
  font-size: 0.98rem;
  line-height: 1.7;
}

.countdown {
  margin: 28px auto 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(560px, 100%);
}

.time-box {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 10px;
  border-radius: 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.time {
  display: block;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 1px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.time.bump {
  transform: translateY(-6px) scale(1.04);
  opacity: 0.85;
}

.label {
  font-size: 0.78rem;
  color: #9aa7c9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notify {
  margin: 22px auto 0;
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.notify input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 12, 22, 0.9);
  color: var(--text);
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.notify input:focus {
  border-color: rgba(123, 92, 255, 0.8);
  box-shadow: var(--glow);
}

.notify button {
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.notify button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(61, 169, 255, 0.35);
}

.form-message {
  height: 20px;
  margin-top: 6px;
  color: #8fe2a6;
  font-size: 0.85rem;
}

.form-message.error {
  color: #ff8b8b;
}

.socials {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.socials a:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(123, 92, 255, 0.3);
  box-shadow: var(--glow);
}

.footer {
  text-align: center;
  color: #8b93b4;
  padding: 20px 10px 30px;
  font-size: 0.85rem;
}

.bg-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
  background: #5f4bff;
  top: -120px;
  left: -120px;
}

.orb-2 {
  background: #1e91ff;
  bottom: -160px;
  right: -120px;
  animation-delay: 1.5s;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(20px) scale(1.05);
  }
}

@media (max-width: 720px) {
  .notify {
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
