* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

.logo {
  font-size: 3rem;
  font-weight: bold;
  color: #00AFEF;
  margin-bottom: 20px;
  letter-spacing: 2px;
  animation: fadeIn 2s ease;
}

.message {
  font-size: 1.5rem;
  margin-bottom: 40px;
  animation: slideUp 2s ease;
}

.loader {
  display: flex;
  gap: 8px;
}

.dot {
  width: 15px;
  height: 15px;
  background: #00AFEF;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  position: absolute;
  bottom: 15px;
  font-size: 0.9rem;
  color: #888;
}

@media (max-width: 600px) {
  .logo {
    font-size: 2rem;
  }
  .message {
    font-size: 1.2rem;
  }
}
