
        /* --- DESIGN-VARIABLEN (Neon-Farbpalette) --- */
        :root {
            --bg-dark: #0a0a0c;
            --bg-card: #141419;
            --neon-pink: #ff2a74;
            --neon-blue: #00bfff;
            --neon-yellow: #ffdf00;
            --text-light: #f5f5f7;
            --text-muted: #a0a0ab;
            --font-sans: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- HEADER & NAVIGATION --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 12, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 42, 116, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-menu {
            display: flex;
            gap: 25px;
        }

        .nav-link {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            padding: 5px 0;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-pink);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--neon-pink);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .menu-toggle span {
            display: block;
            width: 30px;
            height: 3px;
            background-color: var(--text-light);
            transition: all 0.3s ease;
        }

        /* --- HERO SECTION (Optimiert mit schmalem Infobalken) --- */
        .hero {
            height: 100vh;
            background: linear-gradient(to top, var(--bg-dark) 5%, rgba(10,10,12,0.1) 50%, rgba(10,10,12,0.4) 100%), url('si_back.png') no-repeat center center/cover;
            display: flex;
            flex-direction: column;
            justify-content: flex-end; /* Schiebt alles nach ganz unten */
            align-items: center;
        }

        /* Schmaler, mittiger Infobalken am unteren Bildschirmrand */
        .hero-bar {
            width: 100%;
            max-width: 900px; /* Schön gestreckt, aber kompakt */
            margin-bottom: 4vh; /* Abstand zum echten Bildschirmrand */
            padding: 12px 30px;
            background: rgba(20, 20, 25, 0.75);
            backdrop-filter: blur(15px);
            border-radius: 50px; /* Elegante abgerundete Pille */
            border: 1px solid rgba(255, 42, 116, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            animation: fadeIn 1.2s ease;
        }

        /* Kleinere, feine Schrift */
        .hero-text {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .hero-text span {
            color: var(--neon-blue);
            font-weight: 700;
        }

        /* Kleinerer, eleganter Button im Balken */
        .btn-sm {
            padding: 8px 22px;
            background: transparent;
            color: var(--text-light);
            border: 1.5px solid var(--neon-pink);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-sm:hover {
            background: var(--neon-pink);
            box-shadow: 0 0 15px rgba(255, 42, 116, 0.6);
        }

        /* --- ALLGEMEINE SEKTIONEN --- */
        section {
            padding: 100px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 60px;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
            margin: 15px auto 0 auto;
            border-radius: 2px;
        }

        /* --- ÜBER MICH (VITA) --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .about-header h3 {
            font-size: 1.8rem;
            color: var(--neon-blue);
        }

        .about-logo {
            width: 45px;
            height: 45px;
            object-fit: contain;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .highlight-box {
            background-color: var(--bg-card);
            border-left: 4px solid var(--neon-pink);
            padding: 20px;
            margin-top: 30px;
            border-radius: 0 8px 8px 0;
        }

        .about-img-wrap {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            border: none;
            box-shadow: none;
			max-width: 50%
			margin: 0 auto;
        }

        .about-img-wrap img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-img-wrap:hover img {
            transform: scale(1.03);
        }

        .stats-banner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 60px;
        }

        .stat-card {
            background: var(--bg-card);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-number {
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--neon-yellow);
            margin-bottom: 5px;
            display: block;
        }

        .stat-label {
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
            color: var(--text-muted);
        }

        /* --- PROJEKT SCHLAGERINFIZIERT --- */
        .project-box {
            background: linear-gradient(135deg, rgba(5, 5, 7, 0.95) 0%, rgba(15, 10, 20, 0.97) 100%), url('Cover_gross_schlagerinfiziert_v1.jpg') no-repeat center center/cover;
            background-blend-mode: overlay;
            border: 1px solid rgba(255, 42, 116, 0.3);
            padding: 60px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.6);
        }

        .project-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .project-tag {
            display: inline-block;
            padding: 5px 15px;
            background: rgba(255, 42, 116, 0.15);
            border: 1px solid var(--neon-pink);
            color: var(--neon-pink);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .quotes-container {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .quote-card {
            background: rgba(10, 10, 12, 0.8);
            padding: 20px;
            border-radius: 8px;
            font-style: italic;
            border: 1px dashed rgba(255,255,255,0.15);
        }

        /* --- DISKOGRAFIE --- */
        .disco-timeline {
            max-width: 800px;
            margin: 0 auto;
        }

        .disco-item {
            display: flex;
            margin-bottom: 25px;
            background: var(--bg-card);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.05);
            align-items: center;
        }

        .disco-year {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--neon-blue);
            min-width: 100px;
            border-right: 2px solid var(--neon-pink);
            margin-right: 20px;
            padding-right: 10px;
        }

        .disco-tracks {
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* --- SPOTIFY PLAYER --- */
        .spotify-wrapper {
            max-width: 800px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
            border: 1px solid rgba(0, 191, 255, 0.3);
        }

        /* --- TERMINE SEKTION --- */
        .year-divider {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 4px;
            color: var(--neon-pink);
            margin: 40px 0;
            text-shadow: 0 0 10px rgba(255, 42, 116, 0.4);
        }

        .dates-list {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .date-row {
            display: grid;
            grid-template-columns: 150px 1fr;
            background: var(--bg-card);
            padding: 18px 25px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.03);
            align-items: center;
            transition: all 0.2s ease;
        }

        .date-row:hover {
            border-color: rgba(0, 191, 255, 0.3);
            transform: scale(1.01);
            background: #191922;
        }

        .date-badge {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--neon-blue);
        }

        .date-details {
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* --- FOOTER & BOOKING-INFOS --- */
        footer {
            background-color: #050507;
            padding: 80px 0 30px 0;
            border-top: 2px solid var(--neon-pink);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .booking-info h3 {
            font-size: 2rem;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .contact-item .icon {
            color: var(--neon-pink);
            font-size: 1.4rem;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.1);
            font-weight: bold;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.1);
            color: var(--text-light);
        }

        .social-icon.facebook:hover { background: #1877f2; border-color: #1877f2; }
        .social-icon.instagram:hover { background: #e1306c; border-color: #e1306c; }
        .social-icon.spotify:hover { background: #1ed760; border-color: #1ed760; }
        .social-icon.youtube:hover { background: #ff0000; border-color: #ff0000; }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* --- ANIMATIONEN --- */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 968px) {
            .about-grid, .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .stats-banner {
                grid-template-columns: repeat(2, 1fr);
            }
            .quotes-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero { 
                padding: 0 20px 4vh 20px;
            }
            .hero-bar {
                flex-direction: column;
                border-radius: 15px;
                text-align: center;
                padding: 20px;
                margin-bottom: 0;
            }
            .hero-text {
                font-size: 0.8rem;
                line-height: 1.4;
            }
            
            .menu-toggle { display: flex; }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--bg-dark);
                flex-direction: column;
                align-items: center;
                padding-top: 60px;
                gap: 40px;
                transition: left 0.4s ease;
                border-top: 1px solid rgba(255, 42, 116, 0.2);
            }

            .nav-menu.active { left: 0; }
            .nav-link { font-size: 1.3rem; }
            .date-row { grid-template-columns: 1fr; gap: 5px; padding: 15px; }

            .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
            .menu-toggle.active span:nth-child(2) { opacity: 0; }
            .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }
        }
   .track-name {
    margin-bottom: 6px;
}
.track-name:last-child {
    margin-bottom: 0;
}
/* --- SCHWEBENDER WHATSAPP BUTTON --- */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 2500; /* Liegt über allen anderen Elementen */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-floating:hover {
    transform: scale(1.1); /* Wird beim Drüberfahren leicht größer */
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8); /* Intensiverer Glow-Effekt */
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Optimierung für Mobilgeräte: Button etwas anheben, falls er sonst Texte verdeckt */
@media (max-width: 768px) {
    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}