/* Global */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #1A50BF, #003580);
  font-family: 'Arial Black', sans-serif;
  color: white;
  text-align: center;
}

/* Container */
.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  box-sizing: border-box;
}

/* Logo */
.logo img {
  max-width: 240px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.4));
  animation: fadeIn 1.2s ease-out forwards;
}

/* Heading */
h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 0.5s forwards;
}

/* Social Icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 1s forwards;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A50BF;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #FFD700;
  color: #1A50BF;
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(255,215,0,0.8);
}

/* Animations */
@keyframes fadeIn { to { opacity: 1; } }
