
        #orange-splash-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, #FFAA53, #FF7B31);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999999;
            opacity: 1;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        
        .splash-content {
            text-align: center;
            animation: pulse 2s infinite ease-in-out;
        }
        
        .splash-logo {
            max-width:  200px;
            max-height: 200px;
            width: auto;
            height: auto;
            margin-bottom: 20px;
        }
        
       
        .splash-timer {
            color: white;
            font-size: 1rem;
            margin-top: 10px;
            opacity: 0.8;
            letter-spacing: 2px;
        }
        
        .logo-fallback {
            display: none;
            color: white;
            font-size: 2rem;
            font-weight: bold;
        }
    