/* ORU Loader (aislado) */
.oru-loader-overlay{
  position:fixed; inset:0; z-index:9999;
  display:grid; place-items:center;
  background:radial-gradient(120% 120% at 50% 50%, #040b1f 0%, #0b2447 60%, #070f23 100%);
  transition:opacity .35s ease, visibility .35s ease;
  opacity:1; visibility:visible;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}
.oru-loader-overlay[aria-hidden="true"]{ opacity:0; visibility:hidden; }

.oru-loader-core{ text-align:center; color:#e8f3ff; }
.oru-loader-ring{ width:min(26vmin,180px); height:min(26vmin,180px); margin:0 auto 18px; position:relative; }
.oru-loader-ring svg{ width:100%; height:100%; display:block; }
.oru-loader-aura{
  fill:none; stroke:url(#oru-grad); stroke-width:10; opacity:.18;
  filter: drop-shadow(0 0 16px rgba(164,116,255,.25));
}
.oru-loader-coreline{
  fill:none; stroke:url(#oru-grad); stroke-width:4; stroke-linecap:round;
  stroke-dasharray: 180 220; transform-origin:50% 50%;
  animation: oru-spin 1.25s linear infinite, oru-dash 1.8s ease-in-out infinite;
}
@keyframes oru-spin{ to{ transform: rotate(360deg); } }
@keyframes oru-dash{
  0%{ stroke-dasharray: 40 360; stroke-dashoffset: 0; }
  50%{ stroke-dasharray: 220 180; stroke-dashoffset: -80; }
  100%{ stroke-dasharray: 40 360; stroke-dashoffset: -360; }
}

/* Título 3D suave */
.oru-loader-title{
  margin: 2px 0 8px; line-height:1.05; letter-spacing:.015em;
  font-weight: 800; font-size: clamp(22px, 5.6vw, 38px); color:#fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.35), 0 1px 0 rgba(0,0,0,.35);
}
.oru-loader-title span:first-child{ display:inline-block; transform: perspective(600px) rotateX(8deg); }
.oru-loader-title span:last-child{ display:inline-block; opacity:.92; font-weight:700; }

.oru-loader-sub{ margin: 4px 0 10px; color:#cfe3ff; font-size: clamp(12px, 2.6vw, 14px); opacity:.95; }
.oru-loader-online{ margin:0; font-size:12px; color:#a9c6ff; opacity:.9; }
.oru-loader-dot{ display:inline-block; width:8px; height:8px; border-radius:50%; background:#22c55e; margin-right:6px; box-shadow:0 0 10px #22c55e; }
