body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url('pelabuhan-sunset.jpg') center/cover no-repeat;
  animation: fadeIn 1.2s ease-in;
}

header {
  text-align: center;
  padding: 1.5rem 1rem;
}

.logo img {
  width: 140px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.logo h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin: 0.5rem 0 0;
}
.tagline {
  font-style: italic;
  color: #FFD700;
}

.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.hero h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
}
.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.time-box {
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 8px;
  min-width: 70px;
  backdrop-filter: blur(4px);
}
.time-box span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  color: #FFD700;
}

.progress {
  max-width: 400px;
  margin: 1rem auto;
}
.bar {
  background: rgba(255,255,255,0.2);
  height: 10px;
  border-radius: 5px;
}
.fill {
  background: #FFD700;
  width: 50%;
  height: 10px;
  border-radius: 5px;
  animation: progressPulse 2s infinite alternate;
}

.early-access {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.early-access input {
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  width: 250px;
}
.early-access button {
  background: #FFD700;
  color: #002b5c;
  border: none;
  border-radius: 5px;
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.early-access button:hover {
  background: linear-gradient(90deg, #FFD700, #FFB300);
  transform: scale(1.05);
}

footer {
  background: rgba(0,0,0,0.4);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.powered a {
  color: #FFD700;
  text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes progressPulse {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

/* Responsif */
@media (max-width: 600px) {
  .countdown {
    flex-direction: column;
    align-items: center;
  }
  .early-access {
    flex-direction: column;
  }
  .early-access input, .early-access button {
    width: 90%;
  }
  .hero h2 {
    font-size: 1.4rem;
  }
  .time-box span {
    font-size: 1.8rem;
  }
}
