@keyframes pm-rise {
    0%   { opacity:0; transform:translateY(40px) scale(0.96); filter:blur(3px); }
    60%  { opacity:1; transform:translateY(-4px) scale(1.008); filter:blur(0); }
    100% { opacity:1; transform:translateY(0) scale(1); filter:blur(0); }
}
@keyframes pm-glow {
    0%,100% { box-shadow:0 0 0 0 rgba(96,165,250,0); }
    50%     { box-shadow:0 0 30px 7px rgba(96,165,250,0.32); }
}
.card-hidden { opacity:0 !important; pointer-events:none !important; }
.ca-premium  {
    animation: pm-rise 0.72s cubic-bezier(0.22,0.68,0,1.1) forwards,
               pm-glow 1s ease 0.45s forwards;
    pointer-events:auto !important;
    cursor:pointer !important;
}

#splash-screen {
    position: fixed; inset: 0; z-index: 999999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: radial-gradient(circle at 50% 40%, rgba(79,140,255,0.18), transparent 55%),
                linear-gradient(135deg, #07111F 0%, #0B1729 45%, #12233F 100%);
    animation: splashOut 1.5s cubic-bezier(0.4,0,0.2,1) 2.5s forwards;
    overflow: hidden;
}
.splash-logo-wrap {
    position: relative; width: 300px; height: 300px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; border-radius: 50%;
}
#splash-logo {
    width: 300px; height: 300px; object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(79,140,255,0.45));
    animation: splashLogoIn 0.5s cubic-bezier(0.22,0.68,0,1.1) both;
    position: relative; z-index: 2;
}
.splash-shine {
    position: absolute; top: 0; left: -150%; width: 60%; height: 100%;
    background: linear-gradient(75deg, transparent, rgba(255,255,255,0.35), transparent);
    z-index: 3; pointer-events: none;
    animation: splashShine 1.4s ease 0.6s;
}
.splash-ring {
    position: absolute; top: 50%; left: 50%; width: 300px; height: 300px;
    border: 1.5px solid rgba(79,140,255,0.5); border-radius: 50%;
    transform: translate(-50%,-50%) scale(0.6); opacity: 0;
}
.splash-ring.r1 { animation: splashRing 2.2s ease-out 0.35s infinite; }
.splash-ring.r2 { animation: splashRing 2.2s ease-out 1.05s infinite; }
.splash-ring.r3 { animation: splashRing 2.2s ease-out 1.75s infinite; }
.splash-tag {
    margin-top: 26px; font-size: 11px; font-weight: 800; letter-spacing: 0.35em;
    color: rgba(148,197,255,0.85); text-transform: uppercase;
    opacity: 0; animation: splashTagIn 0.8s ease 0.55s forwards;
    text-align: center; max-width: 90vw; padding: 0 10px;
}
@media (max-width: 420px){
    .splash-tag { font-size: 9px; letter-spacing: 0.22em; }
}
@keyframes splashLogoIn {
    0%   { opacity:0; transform: scale(0.6); }
    60%  { opacity:1; transform: scale(1.08); }
    100% { opacity:1; transform: scale(1); }
}
@keyframes splashShine {
    0%   { left: -150%; }
    100% { left: 150%; }
}
@keyframes splashRing {
    0%   { transform: translate(-50%,-50%) scale(0.55); opacity: 0.6; }
    80%  { opacity: 0; }
    100% { transform: translate(-50%,-50%) scale(1.35); opacity: 0; }
}
@keyframes splashTagIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes splashOut {
    0%   { opacity: 1; filter: blur(0); }
    100% { opacity: 0; filter: blur(8px); visibility: hidden; pointer-events: none; }
}
@media (prefers-reduced-motion: reduce){
    #splash-screen { animation-delay: 0.1s; }
    #splash-logo { animation: none; opacity:1; }
    .splash-ring, .splash-shine, .splash-tag { animation: none; opacity: 0; }
}

#h-name-disp {
    animation: titleEntrance 0.9s cubic-bezier(0.22,0.68,0,1.1) 2.5s both;
}
@keyframes titleEntrance {
    0%   { opacity:0; transform: translateY(14px) scale(0.96); letter-spacing: 0.5em; }
    100% { opacity:1; transform: translateY(0) scale(1); letter-spacing: 0.24em; }
}
