                0% { opacity: 0; transform: scale(0.9); }
                100% { opacity: 1; transform: scale(1); }
            }
            
            .global-recharge-content {
                background: linear-gradient(135deg, #001122, #003366);
                border: 3px solid #00ffff;
                border-radius: 25px;
                padding: 40px 30px;
                text-align: center;
                position: relative;
                max-width: 450px;
                width: 90%;
                box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
                animation: globalModalSlide 0.6s ease-out;
            }
            
            @keyframes globalModalSlide {
                0% { opacity: 0; transform: translateY(50px) scale(0.8); }
                100% { opacity: 1; transform: translateY(0) scale(1); }
            }
            
            .global-close-btn {
                position: absolute; top: 15px; right: 20px;
                background: none; border: none; color: #fff;
                font-size: 28px; cursor: pointer; width: 40px; height: 40px;
                border-radius: 50%; display: flex; align-items: center; justify-content: center;
                transition: all 0.3s ease;
            }
            
            .global-close-btn:hover {
                background: rgba(255, 255, 255, 0.1);
                transform: scale(1.1);
            }
            
            .global-success-animation {
                margin-bottom: 25px;
            }
            
            .global-success-icon {
                font-size: 4rem; margin-bottom: 15px;
                animation: globalBounce 2s ease-in-out infinite;
            }
            
            @keyframes globalBounce {
                0%, 100% { transform: translateY(0) scale(1); }
                50% { transform: translateY(-15px) scale(1.1); }
            }
            
            .global-success-checkmark {
                font-size: 2.5rem; color: #00ff88;
                text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
                animation: globalGlow 2s ease-in-out infinite;
            }
            
            @keyframes globalGlow {
                0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.8); }
                50% { text-shadow: 0 0 40px rgba(0, 255, 136, 1); }
            }
            
            .global-success-title {
                font-family: 'Orbitron', monospace;
                font-size: 1.5rem; font-weight: 700; color: #00ffff;
                margin-bottom: 25px;
                text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
            }
            
            .global-success-details {
                margin-bottom: 25px;
            }
            
            .global-success-row {
                display: flex; justify-content: space-between; align-items: center;
                margin-bottom: 12px; padding: 10px 15px;
                background: rgba(0, 255, 255, 0.1);
                border-radius: 12px; border: 1px solid rgba(0, 255, 255, 0.3);
            }
            
            .global-promo-highlight {
                background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
                border: 2px solid rgba(255, 215, 0, 0.5);
                animation: globalPromoGlow 2s ease-in-out infinite;
            }
            
            @keyframes globalPromoGlow {
                0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
                50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
            }
            
            .global-label {
                color: rgba(255, 255, 255, 0.9);
                font-weight: 600; font-size: 1rem;
            }
            
            .global-value {
                color: #00ff88; font-weight: 700; font-size: 1.1rem;
                text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
            }
            
            .global-promo-code {
                font-family: 'Courier New', monospace;
                font-size: 1.2rem;
                color: #ffd700;
                background: rgba(0, 0, 0, 0.3);
                padding: 5px 15px;
                border-radius: 8px;
                letter-spacing: 2px;
                text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            }
            
            .global-success-final {
                font-family: 'Space Grotesk', sans-serif;
                font-size: 1.2rem; font-weight: 600; color: #ffd700;
                text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
                margin-bottom: 25px; padding: 15px;
                background: rgba(255, 215, 0, 0.1);
                border-radius: 15px; border: 1px solid rgba(255, 215, 0, 0.3);
            }
            
            .global-success-actions {
                display: flex; gap: 15px; justify-content: center;
            }
            
            .global-btn-primary, .global-btn-secondary {
                padding: 12px 25px; border: none; border-radius: 15px;
                font-weight: 600; cursor: pointer; transition: all 0.3s ease;
                font-size: 1rem;
            }
            
            .global-btn-primary {
                background: linear-gradient(135deg, #00ff88, #00cc66);
                color: #000;
            }
            
            .global-btn-secondary {
                background: linear-gradient(135deg, #00ffff, #0088cc);
                color: #000;
            }
            
            .global-btn-primary:hover, .global-btn-secondary:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            }
            
            @media (max-width: 480px) {
                .global-recharge-content {
                    padding: 20px 15px; max-width: 320px;
                    border-radius: 20px;
                }
                
                .global-success-title { 
                    font-size: 1.1rem; 
                    margin-bottom: 15px; 
                }
                
                .global-success-icon { 
                    font-size: 2.5rem; 
                    margin-bottom: 10px; 
                }
                
                .global-success-checkmark { 
                    font-size: 1.8rem; 
                }
                
                .global-success-details { 
                    margin-bottom: 15px; 
                }
                
                .global-success-row { 
                    margin-bottom: 8px; 
                    padding: 8px 12px; 
                    border-radius: 8px;
                }
                
                .global-label { 
                    font-size: 0.85rem; 
                }
                
                .global-value { 
                    font-size: 0.9rem; 
                }
                
                .global-success-final { 
                    font-size: 1rem; 
                    margin-bottom: 15px; 
                    padding: 10px;
                }
                
                .global-success-actions { 
                    flex-direction: column; 
                    gap: 10px; 
                }
                
                .global-btn-primary, .global-btn-secondary { 
                    width: 100%; 
                    padding: 10px 20px; 
                    font-size: 0.9rem; 
                }
            }
            
            @media (max-width: 360px) {
                .global-recharge-content {
                    padding: 15px 12px; 
                    max-width: 290px;
                    margin: 10px;
                }
                
                .global-success-title { 
                    font-size: 1rem; 
                    margin-bottom: 12px; 
                }
                
                .global-success-icon { 
                    font-size: 2rem; 
                    margin-bottom: 8px; 
                }
                
                .global-success-row { 
                    margin-bottom: 6px; 
                    padding: 6px 10px; 
                }
                
                .global-label { 
                    font-size: 0.8rem; 
                }
                
                .global-value { 
                    font-size: 0.85rem; 
                }
                
                .global-success-final { 
                    font-size: 0.9rem; 
                    margin-bottom: 12px; 
                    padding: 8px;
                }
