/**
 * Index Page Styles
 * Loading and redirect page
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-container {
  text-align: center;
  color: white;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top: 6px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 24px;
}

@keyframes spin {
  0% { 
    transform: rotate(0deg); 
  }
  100% { 
    transform: rotate(360deg); 
  }
}

h1 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}

p {
  font-size: 16px;
  opacity: 0.9;
}

.logo {
  font-size: 48px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  .logo {
    font-size: 40px;
  }

  .spinner {
    width: 50px;
    height: 50px;
  }
}

