@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #000428, #004e92);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.logo {
  width: 120px;
  animation: float 3s ease-in-out infinite;
}

h1 {
  font-size: 2.5rem;
  margin: 20px 0 10px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  margin: 0 auto 40px;
  animation: spin 1.5s linear infinite;
}

.socials a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.socials a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
