/* Full height section */
#Background-video .home {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

#Background-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#Background-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

#Background-video .home-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}



#Background-video  .title {
    font-size: 3rem;   /* makes text larger */
    font-weight: 900;  /* makes it extra bold */
    text-transform: uppercase; /* optional: makes it all caps */
    color: #fff;       /* dark, bold look */
    margin-bottom: 0.5rem;
  }

#Background-video  .subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
  }

/* Countdown */
.countdown-box {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,255,150,0.7);
}

.countdown-label {
  margin-top: 5px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a7f3d0; /* Tailwind lime-200 */
}
