    /* --- 1. BASIC SETUP (Midnight Reflection Mode) --- */
    .reflexion-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        /* Verlauf: Deep Navy -> Cosmic Purple -> Midnight Blue */
        background: linear-gradient(135deg, #0f172a 0%, #312e81 50%, #4c1d95 100%);
        color: #e2e8f0;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        overflow-x: hidden;
        position: relative;
        padding-bottom: 6rem;
    }

    /* --- 2. ANIMATED BACKGROUND --- */
    .bg-element {
        position: absolute;
        opacity: 0.15;
        pointer-events: none;
        animation: float 20s ease-in-out infinite;
        z-index: 0;
        color: #a5b4fc; /* Sanftes Indigo-Weiß */
    }
    
    /* Mond */
    .bg-moon { top: 8%; right: 8%; width: 100px; }
    /* Feder */
    .bg-feather { bottom: 15%; left: 5%; width: 150px; animation-delay: 2s; }
    /* Wolke */
    .bg-cloud { top: 40%; left: 15%; width: 120px; animation-delay: 5s; opacity: 0.1; }

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

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

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

    .header-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        display: inline-block;
        filter: drop-shadow(0 0 15px rgba(165, 180, 252, 0.3));
    }

    .reflexion-title {
        font-size: 3rem;
        font-weight: 800;
        margin: 0 0 1rem 0;
        background: linear-gradient(to right, #e0e7ff, #a5b4fc, #c4b5fd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.1;
    }

    .reflexion-desc {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #cbd5e1;
        max-width: 700px;
        margin: 0 auto 2rem auto;
    }

    /* Language Tags */
    .lang-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 2rem;
    }

    .lang-tag {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.85rem;
        color: #e0e7ff;
        backdrop-filter: blur(4px);
        transition: all 0.3s;
    }

    .lang-tag:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    /* --- 5. GLASS CARD (Main Area) --- */
    .glass-card {
        background: rgba(15, 23, 42, 0.6); /* Dunkleres Glas für Intimität */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 3rem 2.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    /* --- 6. PRIVACY & TIPS --- */
    .privacy-box {
        background: rgba(245, 158, 11, 0.1);
        border: 1px solid rgba(245, 158, 11, 0.3);
        border-radius: 12px;
        padding: 1rem 1.5rem;
        margin-bottom: 2rem;
        font-size: 0.9rem;
        color: #fbbf24;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .writing-tips {
        background: rgba(52, 211, 153, 0.1);
        border-left: 4px solid #34d399;
        padding: 1.5rem;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    .writing-tips h4 {
        color: #34d399;
        margin: 0 0 10px 0;
        font-size: 1.1rem;
    }

    .writing-tips ul {
        margin: 0;
        padding-left: 1.2rem;
        color: #e2e8f0;
    }
    
    .writing-tips li { margin-bottom: 5px; }

    /* --- 7. SHORTCODE STYLING OVERRIDES --- */
    /* Wir machen die Inputs "Papier-ähnlich" hell für guten Kontrast */
    
    .neelix-shortcode-container h2, 
    .neelix-shortcode-container h3 {
        color: #fff !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 10px;
    }

    /* Textareas & Inputs */
    .neelix-shortcode-container textarea,
    .neelix-shortcode-container input[type="text"] {
        background: #f8fafc !important; /* Fast Weißes Papier */
        color: #1e293b !important; /* Dunkle Tinte */
        border: 2px solid rgba(255,255,255,0.1) !important;
        border-radius: 12px !important;
        padding: 1.5rem !important;
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .neelix-shortcode-container textarea:focus,
    .neelix-shortcode-container input[type="text"]:focus {
        border-color: #818cf8 !important;
        box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.3) !important;
        outline: none;
    }

    .neelix-shortcode-container textarea::placeholder {
        color: #94a3b8;
        font-style: italic;
    }

    /* Buttons */
    .neelix-shortcode-container button,
    .neelix-shortcode-container input[type="submit"] {
        background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
        color: white;
        border: none;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .neelix-shortcode-container button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
    }

    /* Secondary Buttons */
    .neelix-shortcode-container button.secondary,
    .neelix-shortcode-container .export-button {
        background: rgba(255,255,255,0.1) !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        box-shadow: none !important;
    }
    
    .neelix-shortcode-container button.secondary:hover,
    .neelix-shortcode-container .export-button:hover {
        background: rgba(255,255,255,0.2) !important;
    }

    /* AI Welcome Box inside Shortcode */
    .neelix-ai-welcome {
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.3);
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        color: #e0e7ff;
    }

    .neelix-ai-welcome h3 { border: none !important; margin-bottom: 0.5rem !important; }

    /* AI Response Styling */
    .ai-response {
        background: rgba(255, 255, 255, 0.05);
        border-left: 4px solid #a5b4fc;
        padding: 20px;
        border-radius: 8px;
        margin-top: 20px;
    }

    @media (max-width: 768px) {
        .reflexion-title { font-size: 2.2rem; }
        .glass-card { padding: 1.5rem; }
        .lang-badges { display: none; /* Auf Mobile ausblenden wenn zu viele */ }
    }

