    /* --- 1. BASIC SETUP (Hope Mode) --- */
    .akut-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        /* HOFFNUNGS-VERLAUF: Türkis (Heilung) -> Blau (Klarheit) -> Violett (Wandel) */
        background: linear-gradient(135deg, #0891b2 0%, #2563eb 50%, #7c3aed 100%);
        color: #ffffff;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        overflow-x: hidden;
        position: relative;
        padding-bottom: 4rem;
    }

    /* --- 2. ANIMATED BACKGROUND (Lichtblicke) --- */
    .bg-element {
        position: absolute;
        opacity: 0.15; /* Etwas sichtbarer auf dem helleren Hintergrund */
        pointer-events: none;
        animation: float 12s ease-in-out infinite;
        z-index: 0;
        color: rgba(255,255,255,0.6); /* Elemente sind jetzt zartes Weiß */
    }
    
    .bg-anchor { top: 15%; left: 5%; width: 150px; }
    .bg-shield { bottom: 20%; right: 5%; width: 120px; animation-delay: 2s; }
    .bg-heart { top: 40%; right: 15%; width: 80px; animation-delay: 4s; }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }

    /* --- 3. CONTAINER --- */
    .akut-container {
        position: relative;
        z-index: 10;
        max-width: 800px;
        margin: 0 auto;
        padding: 4rem 1.5rem;
    }

    /* --- 4. HEADER SECTION --- */
    .akut-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }

    .akut-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin: 0 0 1rem 0;
        color: #fff;
        line-height: 1.2;
        /* Sanfter Schatten statt Neon */
        text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .akut-subtitle {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.9);
        font-weight: 400;
        letter-spacing: 0.5px;
    }

    /* --- 5. PRIVACY NOTICE (Trust Box - Light) --- */
    .privacy-box {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 12px;
        padding: 1rem 1.5rem;
        margin-bottom: 2rem;
        font-size: 0.95rem;
        color: #fff;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .privacy-box svg {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        margin-top: 2px;
        color: #fcd34d; /* Goldenes Schloss für Sicherheit */
    }

    /* --- 6. GLASSMOPHISM CARD (White Frost) --- */
    .glass-card {
        /* Hellerer "Milchglas" Effekt */
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 24px;
        padding: 2.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2); /* Sanfterer Schatten */
    }

    /* --- 7. INTERACTIVE ELEMENTS --- */
    
    .neelix-shortcode-container:not(.tool-ui-native) h2, 
    .neelix-shortcode-container:not(.tool-ui-native) h3 {
        color: #fff;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .neelix-shortcode-container:not(.tool-ui-native) p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* Range Sliders */
    .neelix-shortcode-container:not(.tool-ui-native) input[type="range"] {
        -webkit-appearance: none;
        width: 100%;
        background: transparent;
        margin: 25px 0;
    }
    
    .neelix-shortcode-container:not(.tool-ui-native) input[type="range"]::-webkit-slider-runnable-track {
        width: 100%;
        height: 10px;
        background: rgba(255,255,255,0.3);
        border-radius: 5px;
        border: none;
    }
    
    .neelix-shortcode-container:not(.tool-ui-native) input[type="range"]::-webkit-slider-thumb {
        height: 28px;
        width: 28px;
        border-radius: 50%;
        background: #fff;
        border: 3px solid #22d3ee; /* Frisches Cyan */
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        -webkit-appearance: none;
        margin-top: -9px;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .neelix-shortcode-container:not(.tool-ui-native) input[type="range"]::-webkit-slider-thumb:hover {
        transform: scale(1.1);
        border-color: #06b6d4;
    }

    /* Value Display */
    .value-display {
        font-size: 2.5rem;
        font-weight: 800;
        color: #fff;
        text-align: center;
        margin-bottom: 1rem;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    /* Buttons (Fresh Hope) */
    .neelix-shortcode-container:not(.tool-ui-native) button,
    .neelix-shortcode-container:not(.tool-ui-native) input[type="submit"],
    .neelix-shortcode-container:not(.tool-ui-native) input[type="button"] {
        /* Farbverlauf: Cyan zu Blau - sehr frisch */
        background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
        border: 1px solid rgba(255,255,255,0.2);
        color: white;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
        font-size: 1.1rem;
        margin: 8px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

    .neelix-shortcode-container:not(.tool-ui-native) button:hover,
    .neelix-shortcode-container:not(.tool-ui-native) input[type="submit"]:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
        background: linear-gradient(135deg, #22d3ee 0%, #60a5fa 100%);
    }

    /* Skill & Info Boxen */
    .skill-box, .exercise-box {
        background: rgba(255,255,255,0.2); /* Heller */
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 16px;
        padding: 1.5rem;
        margin: 1.5rem 0;
        color: #fff;
    }
    
    .skill-box strong { color: #fff; text-decoration: underline decoration-sky-300; }

    /* Success Buttons/Boxen */
    .neelix-shortcode-container:not(.tool-ui-native) button.success {
        background: linear-gradient(135deg, #34d399 0%, #10b981 100%); /* Frisches Grün */
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }

    /* Export Buttons (Secondary) */
    .neelix-shortcode-container:not(.tool-ui-native) .export-button {
        background: rgba(255,255,255,0.2) !important;
        border: 1px solid rgba(255,255,255,0.4) !important;
        box-shadow: none !important;
        color: #fff !important;
        font-size: 0.95rem !important;
    }
    
    .neelix-shortcode-container:not(.tool-ui-native) .export-button:hover {
        background: rgba(255,255,255,0.35) !important;
        transform: translateY(-2px);
    }

    /* Native Tool UI: keine doppelten Container-Abstaende */
    .akut-wrapper .neelix-shortcode-container.tool-ui-native,
    .akut-wrapper .neelix-shortcode-container.tool-ui-native #neelix-app-container {
        width: 100%;
    }

    .akut-wrapper .neelix-shortcode-container.tool-ui-native #neelix-app-container {
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    /* Mobile */
    @media (max-width: 768px) {
        .akut-title { font-size: 2.5rem; }
        .akut-container {
            max-width: 100%;
            padding: 1.5rem 0.45rem 2rem;
        }
        .glass-card {
            padding: 0.65rem;
            border-radius: 16px;
        }
        .privacy-box {
            padding: 0.85rem;
            margin-bottom: 1rem;
        }
        .akut-wrapper .aa-container {
            max-width: 100%;
            padding: 12px;
            border-radius: 14px;
        }
    }

    @media (max-width: 430px) {
        .akut-container {
            padding: 1.05rem 0.15rem 1.3rem;
        }
        .glass-card {
            padding: 0.35rem;
            border-radius: 12px;
        }
        .akut-wrapper .aa-container {
            padding: 8px;
            border-radius: 12px;
        }
    }
