#appSplash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(1, 34, 25, .78), rgba(5, 95, 70, .38)),
    url("../img/background.jpg") center / cover no-repeat;
  animation: splashEnter .65s ease both;
}

#appSplash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(244,214,117,.24), transparent 28%),
    linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.46));
}

#appSplash.is-leaving {
  animation: splashLeave .65s ease forwards;
  pointer-events: none;
}

.splash-shell {
  position: relative;
  width: min(100%, 560px);
  padding: 30px 28px 26px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 30px;
  background: rgba(2,44,34,.58);
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  animation: cardReveal .8s .08s ease both;
}

.splash-logo {
  display: block;
  width: min(58vw, 260px);
  height: 220px;
  margin: 0 auto 8px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.38));
  animation: logoFloat 3.2s ease-in-out infinite;
}

.splash-kicker {
  margin: 0 0 6px;
  color: var(--gold-300);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.splash-title {
  margin: 0;
  font-size: clamp(1.85rem, 7vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 8px 26px rgba(0,0,0,.35);
}

.splash-title span { display: block; color: var(--gold-300); }

.splash-subtitle {
  margin: 12px 0 0;
  color: rgba(255,255,255,.88);
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.splash-values {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 20px 0 0;
  font-size: .82rem;
  font-weight: 700;
}

.splash-values i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 12px rgba(244,214,117,.9);
}

.splash-copy {
  max-width: 410px;
  margin: 15px auto 0;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  line-height: 1.7;
}

.splash-progress-wrap { margin-top: 25px; }

.splash-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: rgba(255,255,255,.82);
  font-size: .70rem;
  font-weight: 600;
}

.splash-progress {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  box-shadow: inset 0 1px 4px rgba(0,0,0,.25);
}

.splash-progress-bar {
  position: relative;
  width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), #56d995);
  box-shadow: 0 0 14px rgba(244,214,117,.55);
  transition: width .15s ease;
}

.splash-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  animation: goldShimmer 1.15s linear infinite;
}

.splash-motto {
  margin: 20px 0 0;
  color: var(--gold-300);
  font-size: .86rem;
  font-weight: 600;
}

.splash-version {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,.46);
  font-size: .64rem;
}

@media (max-width: 560px) {
  .splash-shell { padding: 24px 19px 22px; border-radius: 24px; }
  .splash-logo { width: 210px; height: 180px; }
  .splash-copy { font-size: .73rem; }
}
