@font-face {
  font-family: 'Comfortaa';
  src: url('Comfortaa-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(60deg, #00776d 0%, #7dd6c3 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #ffffff;
}

#splash {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.logo-spinner {
  width: 160px;
  height: 160px;
  margin-bottom: 96px;
  animation: spin 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

.loading-text {
  font-family: 'Comfortaa', cursive, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

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