/* ── Page Loader (shared by Home, Venue Partners, Players) ── */
#page-loader {
  position: fixed;
  inset: 0;
  background: #0e1006;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
#page-loader.hide {
  opacity: 0;
  pointer-events: none;
}
.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loader-logo img { height: 48px; width: auto; }
.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(187,216,100,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: #bbd864;
  border-radius: 2px;
  animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}
