/* Base reset & typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #0D1117;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero {
  display: flex;
  width: 100vw;
  height: 100vh;
  background: #0052CC;
  overflow: hidden;
}

.left-pane {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, #0052CC, #00B8D9);
  position: relative;
  z-index: 2;
}

.right-pane {
  width: 50%;
  background-image: url('./soon-w.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0052CC, #00B8D9);
  animation: gradientMove 10s infinite alternate;
  opacity: 0.4;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.headline {
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 0.8rem;
  text-transform:uppercase;
}
.subheadline {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #fff;
}
.countdown-modern {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.time-block {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  text-align: center;
  min-width: 80px;
  transition: transform 0.3s ease;
}

.time-block:hover {
  transform: translateY(-5px);
  border-color: #00B8D9;
}

.time-value {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}

.time-label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #fff;
  margin-top: 0.2rem;
  text-transform: uppercase;
}
.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .left-pane,
  .right-pane {
    width: 100%;
    height: 50%;
  }

  .content {
    max-width: 90%;
  }
}