/* * CREATIVE SPACE STATION DOCKING PRELOADER * Realistic and immersive space experience */ console.log('🚀 Space Station Docking Preloader loaded!'); // Creative Space Station Docking Preloader class SpaceStationPreloader { constructor() { this.loadingProgress = 0; this.isDestroyed = false; this.init(); } init() { this.createContainer(); this.startLoadingSequence(); } createContainer() { // Remove immediate preloader first const immediatePreloader = document.getElementById('immediatePreloader'); if (immediatePreloader) { immediatePreloader.remove(); } // Remove any existing JS preloader const existing = document.getElementById('spacePreloader'); if (existing) existing.remove(); // Create main container this.container = document.createElement('div'); this.container.id = 'spacePreloader'; this.container.innerHTML = `