.mobile-splash-screen{position:fixed;top:0;left:0;right:0;bottom:0;width:100vw;height:100vh;background:linear-gradient(135deg,#3b82f6,#8b5cf6);display:flex;align-items:center;justify-content:center;z-index:9999;animation:fadeIn .3s ease-in}.mobile-splash-screen.fade-out{animation:fadeOut .3s ease-out forwards}.splash-content{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;animation:slideUp .8s ease-out}.splash-title{font-size:2.5rem;font-weight:700;color:white;margin:1.5rem 0 .5rem;letter-spacing:-.025em}.splash-subtitle{font-size:1rem;color:rgba(255,255,255,.9);margin:0;font-weight:400}.tennis-ball-loader{width:80px;height:80px;position:relative;display:flex;align-items:center;justify-content:center}.tennis-ball-loader .ball{width:60px;height:60px;background:#d4ff00;border-radius:50%;position:relative;box-shadow:0 0 0 4px rgba(255,255,255,.3),0 4px 20px rgba(0,0,0,.2);animation:bounce 1.2s ease-in-out infinite}.tennis-ball-loader .ball:after,.tennis-ball-loader .ball:before{content:"";position:absolute;width:100%;height:50%;border:2px solid rgba(255,255,255,.6);border-radius:50%}.tennis-ball-loader .ball:before{top:0;left:-25%;border-bottom:none;transform:rotate(-30deg)}.tennis-ball-loader .ball:after{bottom:0;right:-25%;border-top:none;transform:rotate(-30deg)}@keyframes bounce{0%,to{transform:translateY(0) scale(1)}50%{transform:translateY(-20px) scale(1.05)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes slideUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@media (max-width:640px){.splash-title{font-size:2rem}.splash-subtitle{font-size:.875rem}.tennis-ball-loader{width:70px;height:70px}.tennis-ball-loader .ball{width:50px;height:50px}}body:has(.mobile-splash-screen){overflow:hidden}