* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-weight:bolder;
  letter-spacing: 0px;
}

body {
  background: url("./WhatsApp Image 2025-08-26 at 16.14.20_11675294.jpg") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlay {
  background: rgba(255, 255, 255, rgba(0, 0, 0, 1.5)); /* translucent layer */
  backdrop-filter: blur(4px); /* the magic ✨ */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); */
  z-index: -1;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
   /* text-shadow: 1px 1px 0 #000, 
               -1px -1px 0 #fff; */
}

p {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.6rem;
  flex-wrap: nowrap;
  margin-bottom: 2rem;
}

.time-box {
  width: 120px;
  height: 120px;
  border: 2px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transform: rotate(45deg);
  background: rgba(0, 0, 0, 0.3);
}

.timebox-aligner {
  transform: rotate(-45deg);
}

.timebox-aligner span {
  font-size: 2.5rem;
  font-weight: 700;
}

.timebox-aligner small {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.subscribe {
  margin-top: 1rem;
}

.subscribe button {
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 4px;
  background: #00b894;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe button:hover {
  background: #019875;
}

footer {
  margin-top: 2rem;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  .countdown {
    gap: 1.7rem;
    margin-bottom: 2rem;
  }

  .time-box {
    width: 80px;
    height: 80px;
  }

  .timebox-aligner span {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .timebox-aligner small {
    font-size: 0.7rem;
    margin-top: 0.3rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.8rem;
  }
  .time-box {
    width: 60px;
    height: 60px;
  }

  .countdown {
    gap: 1.1rem;
    margin-bottom: 2rem;
  }

  .timebox-aligner span {
    font-size: 1rem;
    font-weight: 600;
  }

  .timebox-aligner small {
    font-size: 0.6rem;
    margin-top: 0.3rem;
  }
}
