body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  background-image: radial-gradient(circle at center, #2a2a2a 0%, #121212 70%);
  color: #E0E0E0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
  overflow: hidden; /* Hide scrollbars from animations */
}

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

@keyframes subtleBreathe {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  }
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
}

.container {
  max-width: 900px;
  width: 80vw;
  padding: 40px;
  border-radius: 20px; /* Slightly more rounded for glass effect */
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: subtleBreathe 8s ease-in-out infinite;
}

.logo-container {
  width: 100%;
  height: 50vh; /* 50% of viewport height */
  margin-bottom: 30px;
}

.logo-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  transform: scale(0.8); /* Adjust scale to fit nicely */
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2), 0 0 5px rgba(255, 255, 255, 0.2);
  animation: fadeInSlideUp 0.8s ease-out 0.5s forwards;
  opacity: 0; /* Start hidden */
}

.tagline {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 25px;
  color: #FFD700; /* Gold color for emphasis */
  letter-spacing: 1px;
  animation: fadeInSlideUp 0.8s ease-out 0.7s forwards;
  opacity: 0; /* Start hidden */
}

p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: #B0B0B0;
  animation: fadeInSlideUp 0.8s ease-out 0.9s forwards;
  opacity: 0; /* Start hidden */
}

.social-links a {
  color: #B0B0B0;
  margin: 0 15px;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block; /* Needed for transform */
  animation: fadeInSlideUp 0.8s ease-out 1.1s forwards;
  opacity: 0; /* Start hidden */
}

.social-links a:hover {
  color: #FFFFFF;
  transform: translateY(-5px);
}