html,
body {
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

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

body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: #101010; /* AppColors.appBackground — même fond que l’app */
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.loader-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Aligné sur lib/core/widgets/loader.dart [AppLoader] : 40×40, strokeWidth 3, AppColors.primary */
.app-loader {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255, 175, 36, 0.22);
  border-top-color: #ffaf24;
  animation: app-loader-spin 0.85s linear infinite;
  box-sizing: border-box;
}

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