* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background: #020712;
  color: #ffffff;
}

#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.22), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: 0.08s ease-out;
}

.hero {
  position: relative;
  min-height: 100vh;
  z-index: 2;
  background:
    linear-gradient(rgba(0, 119, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 119, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 14s linear infinite;
}

@keyframes gridMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 120px 120px;
  }
}

.navbar {
  width: 100%;
  padding: 28px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0066ff, #00d4ff);
  display: grid;
  place-items: center;
  box-shadow: 0 0 35px rgba(0, 166, 255, 0.6);
}

.nav-status {
  padding: 10px 18px;
  border: 1px solid rgba(0, 183, 255, 0.35);
  border-radius: 100px;
  color: #8ee8ff;
  background: rgba(0, 80, 160, 0.12);
  backdrop-filter: blur(12px);
}

.content {
  min-height: calc(100vh - 104px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 7%;
}

.glass-card {
  position: relative;
  width: min(760px, 100%);
  padding: 55px 45px;
  text-align: center;
  border-radius: 34px;
  background: linear-gradient(145deg,
      rgba(0, 35, 75, 0.75),
      rgba(0, 0, 0, 0.62));
  border: 1px solid rgba(0, 183, 255, 0.32);
  box-shadow:
    0 0 80px rgba(0, 128, 255, 0.18),
    inset 0 0 45px rgba(0, 136, 255, 0.05);
  backdrop-filter: blur(22px);
  overflow: hidden;
  transform-style: preserve-3d;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg,
      transparent,
      rgba(0, 213, 255, 0.35),
      transparent);
  transform: translateX(-100%);
  animation: borderSweep 5s infinite;
}

@keyframes borderSweep {
  0% {
    transform: translateX(-100%);
  }

  45%,
  100% {
    transform: translateX(100%);
  }
}

.orb {
  display: none;
}



.tagline {
  color: #79dcff;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(48px, 8vw, 22px);
  line-height: 0.95;
  background: linear-gradient(90deg, #ffffff, #65dfff, #0077ff);
  -webkit-background-clip: text;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(8px, 5vw, 12px);
  color: #00c8ff;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: 0 0 25px rgba(0, 200, 255, 0.75);
  margin-bottom: 20px;
  animation: pulseText 2.5s infinite;
}

@keyframes pulseText {

  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 25px rgba(0, 200, 255, 0.75);
  }

  50% {
    opacity: 0.78;
    text-shadow: 0 0 45px rgba(0, 200, 255, 1);
  }
}

.description {
  max-width: 620px;
  margin: 0 auto 30px;
  color: #b8d9e9;
  font-size: 17px;
  line-height: 1.7;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 35px 0;
}

.countdown div {
  padding: 20px 12px;
  border-radius: 20px;
  background: rgba(0, 119, 255, 0.12);
  border: 1px solid rgba(0, 195, 255, 0.25);
  box-shadow: inset 0 0 25px rgba(0, 140, 255, 0.05);
}

.countdown span {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
}

.countdown small {
  color: #7bdfff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.notify-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.notify-form input {
  flex: 1;
  padding: 17px 20px;
  border-radius: 100px;
  border: 1px solid rgba(0, 195, 255, 0.3);
  background: rgba(0, 0, 0, 0.38);
  color: #ffffff;
  outline: none;
}

.notify-form input::placeholder {
  color: #7fa8bd;
}

.notify-form button {
  padding: 17px 26px;
  border: none;
  border-radius: 100px;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #005eff, #00c8ff);
  box-shadow: 0 0 30px rgba(0, 153, 255, 0.45);
  transition: 0.3s ease;
}

.notify-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(0, 200, 255, 0.75);
}

.success-message {
  opacity: 0;
  margin-top: 18px;
  color: #8ee8ff;
  transition: 0.3s ease;
}

.success-message.show {
  opacity: 1;
}

.floating-text {
  position: absolute;
  color: rgba(0, 195, 255, 0.16);
  font-weight: 800;
  text-transform: uppercase;
  pointer-events: none;
  animation: floatText 6s ease-in-out infinite;
}

.text-one {
  left: 8%;
  top: 25%;
  font-size: 62px;
}

.text-two {
  right: 10%;
  top: 30%;
  font-size: 44px;
  animation-delay: 1s;
}

.text-three {
  left: 12%;
  bottom: 15%;
  font-size: 48px;
  animation-delay: 2s;
}

.text-four {
  right: 6%;
  bottom: 12%;
  font-size: 36px;
  animation-delay: 1.5s;
}

@keyframes floatText {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }
}

@media (max-width: 768px) {
  body {
    overflow-y: auto;
  }

  .navbar {
    flex-direction: column;
    gap: 18px;
  }

  .glass-card {
    padding: 42px 24px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .notify-form {
    flex-direction: column;
  }

  .floating-text {
    display: none;
  }

  .orb {
    display: none;
  }
}