html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: black;
  overflow: hidden;
  font-family: 'Inter', system-ui, sans-serif;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;

  object-fit: contain;
  object-position: center;

  opacity: 0.40;
  filter: blur(1px);

  background: black;
}



#overlay {
  position: fixed;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  padding-bottom: 10vh;

  color: #00bfff;
  text-align: center;

  z-index: 10; /* 👈 QUESTO è il trucco */
}


#countdown {
  font-size: 3rem;
  letter-spacing: 3px;
  line-height: 1.2;
  white-space: pre-line;
  text-shadow: 0 0 15px rgba(0,191,255,0.6);
}

#date {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.65;
}

@media (max-width: 768px) {
  #bg-video {
    object-position: 50% 30%;
  }
}

