/* ============================================
           SPLASH SCREEN CONTAINER STYLES
           ============================================ */
        #splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            overflow: hidden;
        }
        
        /* ============================================
           A5 LANDSCAPE SPLASH CARD
           ============================================ */
		.splash-card {
			/* Background image ONLY */
			background: url('../images/splash-bg.jpg') center/cover no-repeat;
			
			width: 794px;
			height: 559px;
			border-radius: 15px;
			box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
			position: relative;
			overflow: hidden;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
		}

		/* ✨ GLOSSY OVERLAY using pseudo-element (separate from background image) */
		/* .splash-card::after {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			
			/* Glossy transparent overlay *
			background: 
				/* Subtle radial gloss highlight (top-left light reflection) *
				radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 65%),
				/* Soft dark overlay for text readability *
				rgba(15, 25, 45, 0.35); *
			
			pointer-events: none; /* Allow clicks to pass through to content *
			z-index: 1; /* Keep overlay below content *
		} */

		/* Ensure content appears above the overlay */
		.splash-content,
		.splash-footer {
			position: relative;
			z-index: 2;
		}
        
        /* ============================================
           RIGHT CENTER CONTENT (Logo + Title)
           ============================================ */
        .splash-content {
            position: absolute;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            text-align: center;
        }
        
        .splash-content img {
            max-width: 200px;
            height: auto;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease-in-out;
        }
        
        .splash-content h2 {
            font-size: 2rem;
            color: #333;
            font-weight: 700;
            margin: 0;
            animation: fadeInUp 1s ease-in-out 0.3s both;
        }
        
        /* ============================================
           FOOTER SECTION
           ============================================ */
        .splash-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px 40px;
            background: #f8f9fa;
            border-top: 2px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .footer-logo {
            width: 120px;
            height: auto;
            margin-bottom: 8px;
        }
        
        .copyright-text {
            font-size: 0.85rem;
            color: #6c757d;
            margin: 0;
        }
        
        .footer-right {
            width: 300px;
        }
        
        .progress {
            height: 8px;
            border-radius: 10px;
            background: #e9ecef;
            overflow: hidden;
        }
        
        .progress-bar {
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 10px;
            transition: width 0.1s linear;
            width: 0%;
        }
        
        .loading-text {
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 5px;
            text-align: right;
        }
        
        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .splash-content img {
            animation: fadeInDown 1s ease-in-out, pulse 2s ease-in-out infinite 1s;
        }
        
        /* ============================================
           RESPONSIVE MEDIA QUERIES
           ============================================ */
        @media (max-width: 992px) {
            .splash-card {
                width: 90%;
                height: auto;
                min-height: 500px;
                max-width: 794px;
				border-radius: 15px;
				box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
				position: relative;
				overflow: hidden;
				display: flex;
				flex-direction: column;
				justify-content: space-between;
            }
			
			/* ✨ GLOSSY OVERLAY using pseudo-element (separate from background image) */
			/* .splash-card::after {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				
				/* Glossy transparent overlay *
				background: 
					/* Subtle radial gloss highlight (top-left light reflection) *
					radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 65%),
					/* Soft dark overlay for text readability *
					rgba(15, 25, 45, 0.35);
				
				pointer-events: none; /* Allow clicks to pass through to content *
				z-index: 1; /* Keep overlay below content *
			} */
            
            .splash-content {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                padding: 40px 20px;
                text-align: center;
            }
            
            .splash-content img { max-width: 150px; }
            .splash-content h2 { font-size: 1.5rem; }
            
            .splash-footer {
                position: relative;
                flex-direction: column;
                padding: 15px 20px;
                gap: 15px;
            }
            
            .footer-left { align-items: center; width: 100%; }
            .footer-right { width: 100%; }
        }
        
        @media (max-width: 576px) {
            .splash-card {
                width: 95%;
                min-height: 450px;
                border-radius: 10px;
				box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
				position: relative;
				overflow: hidden;
				display: flex;
				flex-direction: column;
				justify-content: space-between;
            }
			
			/* ✨ GLOSSY OVERLAY using pseudo-element (separate from background image) */
			/* .splash-card::after {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				
				/* Glossy transparent overlay *
				background: 
					/* Subtle radial gloss highlight (top-left light reflection) *
					radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 65%),
					/* Soft dark overlay for text readability *
					rgba(15, 25, 45, 0.35);
				
				pointer-events: none; /* Allow clicks to pass through to content *
				z-index: 1; /* Keep overlay below content *
			} */
            
            .splash-content img { max-width: 120px; }
            .splash-content h2 { font-size: 1.2rem; }
            .footer-logo { width: 60px; }
            .copyright-text { font-size: 0.75rem; }
            .footer-right { width: 100%; }
            .progress { height: 6px; }
        }
		
		/* High DPI / Retina Displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .splash-card {
                background: 
                    /* linear-gradient(135deg, rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.9)), */
                    url('../images/splash-bg.jpg') center/cover no-repeat;
				border-radius: 10px;
				box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);	
				position: relative;
				overflow: hidden;
				display: flex;
				flex-direction: column;
				justify-content: space-between;
            }
			
			/* ✨ GLOSSY OVERLAY using pseudo-element (separate from background image) */
			/* .splash-card::after {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				
				/* Glossy transparent overlay *
				background: 
					/* Subtle radial gloss highlight (top-left light reflection) *
					radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 65%),
					/* Soft dark overlay for text readability *
					rgba(15, 25, 45, 0.35);
				
				pointer-events: none; /* Allow clicks to pass through to content *
				z-index: 1; /* Keep overlay below content *
			} */
        }
        
        /* Dark Mode Support */
        @media (prefers-color-scheme: dark) {
            .splash-content h2 {
                color: #ffffff;
            }
            
            .splash-footer {
                background: rgba(30, 30, 40, 0.95);
                border-top-color: rgba(60, 60, 80, 0.8);
            }
            
            .copyright-text,
            .loading-text {
                color: #adb5bd;
            }
        }