:root {
  --bg: #07070c;
  --card: rgba(14, 14, 24, 0.78);
  --border: rgba(255, 255, 255, 0.10);
  --text: #f5f7ff;
  --muted: #bfc7dc;
  --primary: #ff3ea5;
  --primary-2: #7b61ff;
  --accent: #22d3ee;
  --success: #5cff9d;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(123, 97, 255, 0.22), transparent 30%),
    radial-gradient(circle at bottom, rgba(255, 62, 165, 0.18), transparent 35%),
    var(--bg);
  color: var(--text);
}

body {
  position: relative;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  position: relative;
  z-index: 2;
}

.card {
  width: min(100%, 980px);
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,0.06), transparent 35%, transparent 70%, rgba(255,255,255,0.04));
  pointer-events: none;
}

.logo {
  width: min(220px, 55vw);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 12px 32px rgba(255, 62, 165, 0.28));
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.subtitle {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.status-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  color: #e9efff;
  font-weight: 600;
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(92, 255, 157, 0.7);
  animation: pulse 1.8s infinite;
}

.countdown-wrap {
  margin: 8px 0 30px;
}

.mini-title {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 14px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.count-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 18px 10px;
}

.count-item span {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.count-item small {
  color: var(--muted);
  font-size: 0.85rem;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 1px solid transparent;
}

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

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(123, 97, 255, 0.35);
}

.btn.secondary {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.infos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
  margin-top: 10px;
}

.info-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.info-card h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: #9da7c2;
  font-size: 0.92rem;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7380a8;
}

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

.orb-1 {
  width: 280px;
  height: 280px;
  background: var(--primary);
  top: -70px;
  left: -60px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: var(--primary-2);
  right: -80px;
  bottom: -60px;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  pointer-events: none;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(92, 255, 157, 0.65); }
  70% { box-shadow: 0 0 0 12px rgba(92, 255, 157, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 255, 157, 0); }
}

@media (max-width: 768px) {
  .card {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .infos {
    grid-template-columns: 1fr;
  }

  .logo {
    width: min(180px, 58vw);
  }
}
