/* COPA RUSH — Splash screen (sistema único, isolado) */

#cr-splash.cr-splash {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 55% at 50% 38%, rgba(0, 255, 136, 0.14) 0%, transparent 62%),
    linear-gradient(180deg, #08120f 0%, #0d1b16 50%, #08120f 100%);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#cr-splash.cr-splash--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cr-splash__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 24px;
}

.cr-splash__stage {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-splash__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  pointer-events: none;
}

.cr-splash__ring--a {
  border-top-color: rgba(0, 255, 136, 0.85);
  border-right-color: rgba(0, 255, 136, 0.15);
  animation: cr-splash-orbit 1.1s cubic-bezier(0.5, 0.1, 0.3, 1) infinite;
}

.cr-splash__ring--b {
  inset: 10px;
  border-bottom-color: rgba(0, 212, 255, 0.7);
  border-left-color: rgba(0, 212, 255, 0.12);
  animation: cr-splash-orbit-rev 1.4s cubic-bezier(0.5, 0.1, 0.3, 1) infinite;
}

.cr-splash__ball {
  width: 52px;
  height: 52px;
  object-fit: contain;
  animation: cr-splash-spin 0.95s linear infinite;
  filter: drop-shadow(0 0 18px rgba(0, 255, 136, 0.55));
}

.cr-splash__brand {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.cr-splash__brand span {
  color: #00ff88;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.45);
}

.cr-splash__hint {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(168, 199, 181, 0.72);
  animation: cr-splash-pulse 1.8s ease-in-out infinite;
}

@keyframes cr-splash-orbit {
  to { transform: rotate(360deg); }
}

@keyframes cr-splash-orbit-rev {
  to { transform: rotate(-360deg); }
}

@keyframes cr-splash-spin {
  to { transform: rotate(360deg); }
}

@keyframes cr-splash-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cr-splash__ring--a,
  .cr-splash__ring--b,
  .cr-splash__ball,
  .cr-splash__hint {
    animation: none !important;
  }
}
