body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #e6d7ea;
  text-align: center;
}

.container {
  padding: 40px 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 300px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.boons {
  font-size: 62px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #7c5cff, #ff4db8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h1 {
  font-size: 32px;
  font-weight: 900;
  margin: 25px 0;

  background: linear-gradient(90deg, #5b6dff, #ff4db8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  letter-spacing: 1px;
}

/* COUNTDOWN */

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.time-box {
  min-width: 90px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,77,184,0.3), rgba(91,109,255,0.25));
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.num {
  font-size: 36px;
  font-weight: 900;
}

.label {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* STEPS */

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4db8, #5b6dff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.circle:hover {
  transform: scale(1.1);
}

.circle.active {
  box-shadow: 0 0 25px rgba(255,77,184,0.6);
}

#step-content {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;

  max-width: 540px;
  margin: 30px auto 0;
  padding: 25px;

  border-radius: 22px;

  /* Fond rose vibrant */
  background: linear-gradient(
    135deg,
    rgba(255, 77, 184, 0.35),
    rgba(124, 92, 255, 0.30)
  );

  backdrop-filter: blur(12px);

  box-shadow:
    0 20px 40px rgba(255, 77, 184, 0.18),
    0 15px 35px rgba(91, 109, 255, 0.14);

  color: #1c1026;
  line-height: 1.7;
}

#step-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* FORM */

.form-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

input,
button {
  width: 85%;
  max-width: 400px;
  height: 55px;              /* 👈 force exactement la même hauteur */
  padding: 0 20px;           /* padding horizontal uniquement */
  border-radius: 40px;
  border: none;
  font-size: 16px;
  box-sizing: border-box;    /* très important */
}

button {
  background: linear-gradient(135deg, #ff4db8, #5b6dff);
  color: white;
  cursor: pointer;
}

.launch-note {
  margin-top: 20px;
  font-size: 14px;
}

.confirmation {
  margin-top: 10px;
  font-weight: bold;
  opacity: 0;
  transition: 0.3s;
}
/* Glow quand on clique ou focus */
input:focus,
button:active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 77, 184, 0.25),
              0 0 25px rgba(255, 77, 184, 0.45);
  transition: box-shadow 0.25s ease;
}

/* Glow léger au hover */
button:hover {
  box-shadow: 0 0 20px rgba(91, 109, 255, 0.45);
  transform: translateY(-2px);
}
/* SOCIAL SECTION */

.social-section {
  margin-top: 60px;
  padding: 30px 20px 40px;
  text-align: center;
}

.social-text {
  font-size: 20px;           /* plus grand */
  font-weight: 800;
  margin-bottom: 25px;

  background: linear-gradient(90deg, #5b6dff, #ff4db8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4db8, #5b6dff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(255, 77, 184, 0.6);
}
