* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

.container {
  max-width: 600px;
  width: 100%;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.brand-video {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.message {
  font-size: 2rem;
  margin-bottom: 10px;
}

.sub-message {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

#countdown {
  display: flex;
  justify-content: space-around;
  font-size: 1.5rem;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#countdown div {
  text-align: center;
}

#countdown label {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
  color: #888;
}

@media (max-width: 480px) {
  .message {
    font-size: 1.5rem;
  }

  #countdown {
    flex-direction: column;
    gap: 15px;
  }

  #countdown div {
    font-size: 1.2rem;
  }
}
