#camg-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

#camg-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 232, 0, 0.2);
  overflow: hidden;
  margin-bottom: 32px;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loader-track {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 24px;
}

.loader-track-fill {
  height: 100%;
  background: #f0e800;
  width: 0%;
  transition: width .3s ease;
}

.loader-club {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.loader-msg {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  min-height: 1.2em;
  transition: opacity .3s;
}
