body {
  background-color: #0b0f19;
  color: #f3f4f6;
  font-family: 'Outfit', sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  overscroll-behavior-x: none;
}

.loader-container {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.logo-glow {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 30px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite ease-in-out;
}

.logo-glow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: spin 3s linear infinite;
}

.app-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(to right, #60a5fa, #c084fc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.app-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: #9ca3af;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.spinner {
  width: 40px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 24px auto 0 auto;
  overflow: hidden;
  position: relative;
}

.spinner-fill {
  position: absolute;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  border-radius: 2px;
  animation: loading 1.5s infinite ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 40px rgba(139, 92, 246, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(139, 92, 246, 0.6); }
  100% { transform: scale(1); box-shadow: 0 0 40px rgba(139, 92, 246, 0.4); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes loading {
  0% { left: -50%; }
  50% { left: 100%; }
  100% { left: -50%; }
}
