:root{
  --bg1:#0b0b16;
  --bg2:#20114a;
  --primary:#8B5CF6;
  --accent:#EC4899;
  --text:#ffffff;
}

*{box-sizing:border-box;margin:0;padding:0}

.splash-body{
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background: radial-gradient(1200px 800px at 70% 20%, rgba(236,72,153,.18), transparent 60%),
              radial-gradient(900px 700px at 30% 80%, rgba(139,92,246,.18), transparent 60%),
              linear-gradient(135deg, var(--bg1), var(--bg2));
  color:var(--text);
  overflow:hidden;
  position:relative;
}

/* glow orbs */
.splash-body::before,
.splash-body::after{
  content:"";
  position:absolute;
  width:520px;height:520px;
  border-radius:50%;
  filter: blur(90px);
  opacity:.28;
  animation: floaty 12s ease-in-out infinite;
  pointer-events:none;
  z-index:0;
}
.splash-body::before{
  background: var(--primary);
  top:-220px; right:-220px;
}
.splash-body::after{
  background: var(--accent);
  bottom:-240px; left:-240px;
  animation-duration: 10s;
  animation-direction: reverse;
}

@keyframes floaty{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(60px,40px) scale(1.08); }
}

/* card */
.splash-container{
  position:relative;
  z-index:1;
  width:min(520px, 92vw);
  padding:42px 28px 34px;
  border-radius:22px;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 25px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  text-align:center;
}

/* logo */
.splash-logo{
  width:150px;
  height:150px;
  object-fit:contain;
  border-radius:18px;
  position:relative;
  display:block;
  margin:0 auto 18px;
  animation: popIn .9s cubic-bezier(.2,.9,.2,1) both, breathe 2.6s ease-in-out infinite;
  filter: drop-shadow(0 18px 40px rgba(139,92,246,.35));
}

.splash-logo::before{ display:none; } /* just in case */

.splash-container::before{
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  left:50%;
  top:42px;
  transform: translateX(-50%);
  border-radius:50%;
  background: conic-gradient(from 180deg, rgba(139,92,246,.0), rgba(139,92,246,.7), rgba(236,72,153,.7), rgba(139,92,246,.0));
  filter: blur(10px);
  opacity:.9;
  animation: spin 2.8s linear infinite;
  z-index:-1;
}

@keyframes spin{ to{ transform: translateX(-50%) rotate(360deg); } }

@keyframes popIn{
  from{ transform: translateY(10px) scale(.85); opacity:0; }
  to{ transform: translateY(0) scale(1); opacity:1; }
}

@keyframes breathe{
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.035); }
}

.splash-title{
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.65));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.splash-subtitle{
  font-size: 15px;
  opacity:.82;
  margin-bottom: 18px;
}

/* loader */
.loader{
  margin: 14px auto 0;
  width: 160px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
}
.loader span{
  display:block;
  height:100%;
  width:35%;
  border-radius:999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: load 5s ease-in-out forwards;
}
@keyframes load{
  from{ transform: translateX(-110%); }
  to{ transform: translateX(220%); }
}
