* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0c0c0c 60%, #1a1a1a);
  color: #fdfdfd;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(255,215,100,0.1), transparent 70%);
  z-index: 0;
}

.container {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}

.logo {
  width: 250px;
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease forwards;
}

h1 {
  font-size: 3rem;
  /* color: #e0c36f; */
  
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
}

.tagline {
  font-size: 1.25rem;
  color: #a8f8af;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0;
}

.contact {
  font-size: 1rem;
  color: #ddd;
  opacity: 0;
}

.contact a {
  color: #fdd35c;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact a:hover {
  text-shadow: 0 0 5px #fdd35c, 0 0 10px #fdd35c;
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  .tagline {
    font-size: 1.1rem;
  }
  .logo {
    width: 180px;
  }
}
