:root {
  --bg: #0a0a0f;
  --blurple: #5865f2;
  --blurple-light: #7289ff;
  --text: #f4f4f8;
  --text-dim: #9a9aab;
}

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

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  text-align: center;
}

.bg-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(88, 101, 242, 0.35), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(114, 137, 255, 0.15), transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(88, 101, 242, 0.15), transparent 55%);
  z-index: 0;
  pointer-events: none;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  max-width: 900px;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-dim);
  margin-bottom: 36px;
  animation: fadeDown 0.8s ease both;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blurple-light);
  box-shadow: 0 0 12px 2px var(--blurple-light);
  animation: pulse 2s infinite ease-in-out;
}

.coming-soon {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff 20%, var(--blurple-light) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeUp 1s ease both;
  animation-delay: 0.15s;
}

.subtitle {
  margin-top: 22px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dim);
  animation: fadeUp 1s ease both;
  animation-delay: 0.35s;
}

.countdown {
  display: flex;
  gap: 18px;
  margin-top: 48px;
  animation: fadeUp 1s ease both;
  animation-delay: 0.5s;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 78px;
  padding: 14px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}

.time-number {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.time-label {
  margin-top: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}

.socials {
  margin-top: 42px;
  animation: fadeUp 1s ease both;
  animation-delay: 0.65s;
}

.social-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  background: var(--blurple);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 rgba(88, 101, 242, 0);
}

.social-btn:hover {
  background: var(--blurple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.45);
}

.footer {
  margin-top: 60px;
  font-size: 12px;
  color: #5a5a6b;
  animation: fadeUp 1s ease both;
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (max-width: 480px) {
  .countdown { gap: 10px; }
  .time-block { min-width: 64px; padding: 10px 6px; }
}