* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

.video-background {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25); /* crop 20% from all sides */
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay */
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.logo {
  max-width: 230px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.countdown div {
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 10px;
  min-width: 70px;
}

.countdown span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

.countdown small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.contact {
  font-size: 1rem;
}

.contact a {
  color: #14A765;
  text-decoration: none;
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  .countdown {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .countdown div {
    padding: 0.8rem;
    min-width: 60px;
  }
  .countdown span {
    font-size: 1.5rem;
  }
  .logo {
      max-width: 180px;
  }
}
