/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #0f1117;
  color: white;
  min-height: 100vh;
  overflow: hidden;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 700px;
}

.badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 800;
}

.subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.time-box {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(12px);
}

.time-box span {
  font-size: 2.3rem;
  font-weight: 700;
}

.time-box small {
  margin-top: 6px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.notify-btn {
  padding: 16px 34px;
  border: none;
  border-radius: 16px;
  background: white;
  color: black;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.notify-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.15);
}

.gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: #6c5ce7;
  top: -100px;
  left: -80px;
}

.circle-2 {
  width: 350px;
  height: 350px;
  background: #00d2d3;
  bottom: -120px;
  right: -100px;
}

.noise {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.15;
}

@media (max-width: 600px) {
  .time-box {
    width: 90px;
    height: 90px;
  }

  .time-box span {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}