        :root {
            --overlay-color: rgba(0, 0, 0, 0.6); /* Dunkler Schleier über dem Bild */
            --glass-bg: rgba(255, 255, 255, 0.1); /* Milchglas-Effekt */
            --accent: #ff4d00; /* Ein warmes Bühnenlicht-Orange */
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Montserrat', sans-serif;
            color: white;
            height: 100vh;
            overflow: hidden; /* Kein Scrollen, pure Immersion */
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        /* === Der Hintergrund (Simuliertes Video) === */
        .bg-container {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
        }

        .bg-image {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
        }

        /* Bild 1: Drummer Vibe (Platzhalter von Unsplash) */
        .bg-1 {
            background-image: url('https://images.unsplash.com/photo-1519892300165-cb5542fb47c7?q=80&w=1920&auto=format&fit=crop&ixlib=rb-4.0.3');
            animation: zoomFade 20s infinite alternate;
        }

        /* Dunkler Overlay für bessere Lesbarkeit */
        .overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), #000);
        }


        /* Die langsame Bewegung */
        @keyframes zoomFade {
            0% { transform: scale(1); }
            100% { transform: scale(1.15); }
        }


        /* === Der Inhalt (Glassmorphismus) === */
        .content-box {
            background: var(--glass-bg);
            backdrop-filter: blur(12px); /* Der Milchglas-Effekt */
            -webkit-backdrop-filter: blur(12px);
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            max-width: 500px;
            width: 90%;
        }

        h1 {
            font-weight: 800;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .subtitle {
            font-weight: 300;
            font-size: 1rem;
            letter-spacing: 4px;
            color: var(--accent);
            margin-bottom: 30px;
        }

        /* Next Alley Button */
        .band-link {
            display: block;
            padding: 20px;
            margin: 30px 0;
            background: rgba(0,0,0,0.5);
            color: white;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            border: 2px solid var(--accent);
            transition: all 0.3s ease;
        }

        .band-link:hover {
            background: var(--accent);
            color: black;
            box-shadow: 0 0 20px var(--accent);
        }

        .band-link span {
            display: block;
            font-size: 0.7rem;
            font-weight: 300;
            margin-bottom: 5px;
            color: #ccc;
        }

        /* Mail Link */
        .mail-link {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: color 0.3s;
        }
        .mail-link:hover { color: var(--accent); }

