:root {
  --red: #e30613;
  --white: #ffffff;
  --blue: #0057b8;
  --bg: #050509;
  --card-bg: #101018;
  --border: rgba(255, 255, 255, 0.12);
  --muted: #b0b0b0;
  --radius-lg: 20px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #151520 0, #050509 55%, #000 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.launch-wrapper {
  width: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.launch-card {
  max-width: 600px;
  width: 100%;
  background: var(--card-bg);
  border-radius: 30px;
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.launch-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(227, 6, 19, 0.25), transparent),
    radial-gradient(circle at bottom, rgba(0, 87, 184, 0.25), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.launch-badge {
  position: relative;
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.launch-title {
  position: relative;
  margin: 0 0 0.5rem;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-subtitle {
  position: relative;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.launch-text {
  position: relative;
  margin: 0 0 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.launch-text strong {
  color: var(--white);
}

/* Countdown */

.countdown {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.time-unit {
  min-width: 80px;
  padding: 0.9rem 0.8rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.time-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
}

.time-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

.launch-small {
  position: relative;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.live-now {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

/* Responsive */

@media (max-width: 480px) {
  .launch-card {
    padding: 2rem 1.4rem;
  }

  .time-unit {
    min-width: 70px;
  }
}
