/* Suppress Flutter debug-mode loading bar (.flutter-loader injected by flutter_tools) */
.flutter-loader {
  display: none !important;
}

:root {
  --splash-bg-top: #0E1514;
  --splash-bg-bot: #073330;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

body {
  background: linear-gradient(
    to bottom,
    var(--splash-bg-top)   0%,
    var(--splash-bg-bot) 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
}

#splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-logo {
  position: relative;
  width: 128px;
  height: 128px;
}

/* Legacy utility classes kept for removeSplashFromWeb() compat */
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
