html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f5f6fa;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

#flutter-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #6a5ae0;
  gap: 16px;
}

#flutter-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(106, 90, 224, 0.2);
  border-top-color: #6a5ae0;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

::selection {
  background: rgba(106, 90, 224, 0.25);
}
