/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

/* Container */
.container {
  animation: fadeIn 1.5s ease-in-out;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  animation: float 3s ease-in-out infinite;
}

.logo .circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  margin-right: 15px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.logo h1 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

/* Headline */
.headline {
  font-size: 1.6rem;
  margin-bottom: 10px;
  animation: fadeUp 2s ease;
}

/* Subtext */
.subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  animation: fadeUp 2.5s ease;
}

/* Loader */
.loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1.5s linear infinite;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
