* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #646464, #000);
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 1.5s ease;
}

.logo {
  width: 300px;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  letter-spacing: 1px;
}

.subtitle {
  color: #9fd88b;
  margin-top: 8px;
  font-size: 16px;
}

h2 {
  margin: 40px 0 20px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #cccccc;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.time-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 22px;
  min-width: 90px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.time-box span {
  display: block;
  font-size: 32px;
  font-weight: 600;
}

.time-box small {
  color: #aaa;
  font-size: 12px;
  letter-spacing: 1px;
}

.contact p {
  margin: 10px 0;
}

.contact a {
  color: #9fd88b;
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 15px;
  font-size: 12px;
  color: #777;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 600px) {
  h1 {
    font-size: 36px;
  }
}
