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

:root {
  --blue: #075ee8;
  --dark-blue: #07358f;
  --orange: #ff7600;
  --red: #ef3028;
  --text: #13244b;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(7, 94, 232, .13), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(255, 118, 0, .14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 52%, #fff8f2 100%);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 18px;
  position: relative;
  overflow: hidden;
}

.card {
  width: min(940px, 100%);
  text-align: center;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(7,94,232,.14);
  border-radius: 30px;
  padding: 42px 45px 30px;
  box-shadow: 0 25px 70px rgba(7,53,143,.14);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.logo {
  width: min(560px, 90%);
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--blue), #1778f2);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-top: 3px;
  box-shadow: 0 8px 22px rgba(7,94,232,.22);
}

h1 {
  margin-top: 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
}

h1 span {
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro {
  max-width: 680px;
  margin: 18px auto 28px;
  color: #5c6b87;
  font-size: 17px;
  line-height: 1.7;
}

.intro strong {
  color: var(--blue);
}

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

.time-box {
  background: linear-gradient(145deg, #ffffff, #edf5ff);
  border: 1px solid #dbe8ff;
  border-radius: 18px;
  padding: 17px 8px;
  box-shadow: 0 10px 25px rgba(7,53,143,.08);
}

.time-box strong {
  display: block;
  color: var(--dark-blue);
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1;
}

.time-box small {
  display: block;
  color: #71809d;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.notify {
  max-width: 570px;
  display: flex;
  gap: 10px;
  margin: 0 auto;
}

.notify input {
  flex: 1;
  min-width: 0;
  border: 1px solid #d5e1f5;
  border-radius: 14px;
  padding: 15px 17px;
  outline: none;
  font-size: 14px;
  color: var(--text);
  background: #fff;
}

.notify input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7,94,232,.08);
}

.notify button {
  border: 0;
  border-radius: 14px;
  padding: 0 24px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(90deg, var(--blue), #1356c7);
  box-shadow: 0 9px 20px rgba(7,94,232,.22);
  transition: .2s ease;
}

.notify button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 25px rgba(7,94,232,.28);
}

.message {
  min-height: 20px;
  margin-top: 10px;
  color: #16854a;
  font-size: 13px;
}

.social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 20px;
}

.social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  background: linear-gradient(145deg, var(--blue), var(--dark-blue));
  transition: .2s ease;
}

.social a:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, var(--orange), var(--red));
}

footer {
  color: #8793aa;
  font-size: 12px;
}

.glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .22;
}

.glow-one {
  background: #0b6dff;
  left: -100px;
  top: 10%;
}

.glow-two {
  background: #ff8a00;
  right: -100px;
  bottom: 5%;
}

@media (max-width: 650px) {
  .card {
    padding: 28px 18px 24px;
    border-radius: 22px;
  }

  .logo {
    width: 95%;
  }

  h1 {
    letter-spacing: -1px;
  }

  .intro {
    font-size: 15px;
  }

  .countdown {
    gap: 7px;
  }

  .time-box {
    padding: 13px 4px;
    border-radius: 13px;
  }

  .notify {
    flex-direction: column;
  }

  .notify button {
    min-height: 50px;
  }
}
