* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.container {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.name {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.typing {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #cfd9df;
}

.cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.description {
  margin: 25px auto;
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.countdown {
  margin: 30px auto;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.countdown div {
  background: rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 90px;
}

.countdown span {
  font-size: 1.8rem;
  font-weight: 600;
}

.countdown small {
  display: block;
  margin-top: 5px;
  font-size: 0.75rem;
  color: #cbd5e1;
}

.links {
  margin-top: 25px;
}

.links a {
  margin: 0 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.links a:hover {
  border-color: #ffffff;
}

footer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #cbd5e1;
}
