import './styles/base.css' import { ScenicBackground } from './ui/animations/scenic-bg' // Scenic Background starten const heroSection = document.getElementById('hero') if (heroSection) { const scenic = new ScenicBackground(heroSection) scenic.start() } console.log('🌍 GeoGraSim geladen')