#jj-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #0D0D0D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: loaderHide 0.5s ease 3s forwards;
}

@keyframes loaderHide {
  to {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}

.loader-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  animation: lFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(201,168,76,0.6));
}
@keyframes lFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.loader-brand {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: #E8C97A;
  letter-spacing: 0.1em;
  margin-top: 18px;
}
.loader-tagline {
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 5px;
}
.loader-bar-wrap {
  width: 150px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 28px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg,#9A7A2E,#C9A84C,#E8C97A);
  animation: lBar 2.8s ease forwards;
}
@keyframes lBar { to { width: 100%; } }
.loader-dots {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}
.loader-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #C9A84C;
  animation: lDot 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2){animation-delay:.2s}
.loader-dots span:nth-child(3){animation-delay:.4s}
@keyframes lDot {
  0%,100%{opacity:.3;transform:scale(.8)}
  50%{opacity:1;transform:scale(1.3);background:#E8C97A}
}
.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  animation: lRing 3s ease-in-out infinite;
}
.loader-ring:nth-child(1){width:190px;height:190px}
.loader-ring:nth-child(2){width:260px;height:260px;animation-delay:.7s}
@keyframes lRing {
  0%,100%{transform:scale(.95);opacity:.4}
  50%{transform:scale(1.05);opacity:.1}
}
