.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #002046;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 280px;
  padding: 0 24px;
}

.loading-logo {
  height: 60px;
  width: auto;
}

.loading-bar-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #E31E24 0%, #ffc107 100%);
  border-radius: 2px;
  transition: width 0.15s linear;
}

body.is-loading {
  overflow: hidden;
}
