    /* --- 1. BASIC SETUP (Clear Horizon Mode) --- */
    .kompass-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        /* Verlauf: Bright Cyan -> Ocean Blue -> Soft Violet */
        background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 50%, #8b5cf6 100%);
        color: #ffffff;
        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.12;
        pointer-events: none;
        animation: float 20s ease-in-out infinite;
        z-index: 0;
        color: #fff;
    }
    
    /* Kompass */
    .bg-compass { top: 10%; right: 10%; width: 150px; animation-duration: 25s; }
    /* Map Pin */
    .bg-pin { bottom: 20%; left: 5%; width: 100px; animation-delay: 2s; }
    /* Karte */
    .bg-map { top: 45%; left: 20%; width: 120px; animation-delay: 5s; opacity: 0.08; }

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

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

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

    .header-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        display: inline-block;
        filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.4));
        animation: pulse 4s infinite;
    }

    .kompass-title {
        font-size: 3rem;
        font-weight: 800;
        margin: 0 0 1rem 0;
        color: #fff;
        line-height: 1.1;
        text-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }

    .kompass-desc {
        font-size: 1.15rem;
        line-height: 1.6;
        color: rgba(255,255,255,0.95);
        max-width: 700px;
        margin: 0 auto 2rem auto;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    /* Progress Bar (Visual Only for Intro) */
    .progress-visual {
        background: rgba(255, 255, 255, 0.2);
        height: 6px;
        width: 200px;
        margin: 0 auto 3rem auto;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .progress-bar-inner {
        background: #fff;
        height: 100%;
        width: 25%; /* Start bei 25% */
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(255,255,255,0.5);
    }

    /* --- 5. GLASS CARD (Main Interface) --- */
    .glass-card {
        background: rgba(255, 255, 255, 0.92); /* Fast undurchsichtiges Weiß für Klarheit */
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 24px;
        padding: 3rem 2.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
        color: #1e293b; /* Dunkler Text für Lesbarkeit auf Weiß */
    }

    /* --- 6. SHORTCODE STYLING --- */
    
    /* Headings */
    .neelix-shortcode-container:not(.tool-ui-native) h2 {
        color: #0f172a !important;
        text-align: center;
        margin-bottom: 2rem !important;
        font-size: 1.8rem !important;
    }

    .neelix-shortcode-container:not(.tool-ui-native) h3 {
        color: #0ea5e9 !important; /* Cyan-Blue */
        font-size: 1.4rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* --- INPUT FIELDS (Search Style) --- */
    .neelix-shortcode-container:not(.tool-ui-native) input[type="text"], 
    .neelix-shortcode-container:not(.tool-ui-native) input[type="search"] {
        background: #f8fafc !important;
        border: 2px solid #e2e8f0 !important;
        border-radius: 50px !important; /* Pill shape */
        padding: 18px 30px !important;
        font-size: 1.1rem !important;
        color: #334155 !important;
        width: 100%;
        margin: 1.5rem 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-align: center;
    }

    .neelix-shortcode-container:not(.tool-ui-native) input[type="text"]:focus,
    .neelix-shortcode-container:not(.tool-ui-native) input[type="search"]:focus {
        border-color: #3b82f6 !important;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2) !important;
        outline: none;
        transform: translateY(-2px);
    }

    /* --- OPTION CARDS (Grid) --- */
    .neelix-shortcode-container:not(.tool-ui-native) .option-grid,
    .neelix-shortcode-container:not(.tool-ui-native) .addiction-grid,
    .neelix-shortcode-container:not(.tool-ui-native) .help-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .neelix-shortcode-container:not(.tool-ui-native) .option-card {
        background: #fff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 16px !important;
        padding: 1.5rem !important;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        position: relative;
    }

    .neelix-shortcode-container:not(.tool-ui-native) .option-card:hover {
        border-color: #3b82f6 !important;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
    }

    .neelix-shortcode-container:not(.tool-ui-native) .option-card.selected {
        background: #eff6ff !important; /* Light Blue Bg */
        border-color: #3b82f6 !important;
        box-shadow: 0 0 0 2px #3b82f6 !important;
    }

    .neelix-shortcode-container:not(.tool-ui-native) .option-card .icon {
        font-size: 2.5rem;
        display: block;
        margin-bottom: 1rem;
    }

    .neelix-shortcode-container:not(.tool-ui-native) .option-card .title {
        font-weight: 700;
        color: #1e293b;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .neelix-shortcode-container:not(.tool-ui-native) .option-card .description {
        font-size: 0.9rem;
        color: #64748b;
        line-height: 1.4;
    }

    /* Tags inside cards */
    .neelix-shortcode-container:not(.tool-ui-native) .option-card .tag {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #ec4899; /* Pink Badge */
        color: white;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 10px;
        text-transform: uppercase;
    }

    /* --- BUTTONS --- */
    .neelix-shortcode-container:not(.tool-ui-native) button,
    .neelix-shortcode-container:not(.tool-ui-native) .next,
    .neelix-shortcode-container:not(.tool-ui-native) .search {
        background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 50px !important;
        padding: 16px 32px !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        transition: all 0.3s !important;
        box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4) !important;
        width: 100%;
        margin-top: 1rem;
    }

    .neelix-shortcode-container:not(.tool-ui-native) button:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(14, 165, 233, 0.6) !important;
    }

    .neelix-shortcode-container:not(.tool-ui-native) button:disabled {
        background: #cbd5e1 !important;
        box-shadow: none !important;
        cursor: not-allowed;
        transform: none !important;
    }

    /* Secondary Buttons (Back/New Search) */
    .neelix-shortcode-container:not(.tool-ui-native) .secondary, 
    .neelix-shortcode-container:not(.tool-ui-native) .back {
        background: #fff !important;
        color: #64748b !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    }

    .neelix-shortcode-container:not(.tool-ui-native) .secondary:hover,
    .neelix-shortcode-container:not(.tool-ui-native) .back:hover {
        background: #f8fafc !important;
        color: #0ea5e9 !important;
        border-color: #0ea5e9 !important;
    }

    /* --- LOADING SCREEN --- */
    .neelix-loading-screen {
        text-align: center;
        padding: 2rem;
    }
    
    .neelix-loading-spinner {
        border-top-color: #0ea5e9 !important;
        border-left-color: #0ea5e9 !important;
    }

    .neelix-loading-step.active { color: #0ea5e9 !important; }
    .neelix-loading-step.completed { color: #10b981 !important; }

    /* --- RESULT CARDS --- */
    .neelix-result-card {
        border-left: 5px solid #0ea5e9 !important;
        background: #fff !important;
        padding: 2rem !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1) !important;
        margin-bottom: 2rem !important;
        position: relative;
    }

    .neelix-result-number {
        background: #0ea5e9 !important;
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        position: absolute;
        top: -15px;
        left: -15px;
        box-shadow: 0 4px 6px rgba(14, 165, 233, 0.4);
    }

    .neelix-result-title {
        color: #0f172a !important;
        font-size: 1.4rem !important;
    }

    .neelix-contact-info a { color: #0ea5e9 !important; font-weight: 600; }

    /* AI Recommendation Box */
    .neelix-ai-recommendation {
        background: rgba(14, 165, 233, 0.08) !important;
        border: 1px solid rgba(14, 165, 233, 0.2) !important;
        border-radius: 16px !important;
        padding: 1.5rem !important;
        position: relative;
    }

    .neelix-ai-recommendation::before {
        content: '🤖';
        font-size: 2rem;
        position: absolute;
        top: -15px;
        right: 20px;
        background: #fff;
        border-radius: 50%;
        padding: 5px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* Hints */
    .neelix-location-hint {
        background: #f0fdf4 !important; /* Pale Green */
        border-left: 4px solid #4ade80 !important;
        color: #166534 !important;
        padding: 1rem;
        border-radius: 8px;
        margin: 1rem 0;
        font-size: 0.9rem;
    }

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

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

    .kompass-wrapper .kp-shell {
        max-width: 100%;
    }

    @media (max-width: 768px) {
        .kompass-title { font-size: 2.5rem; }
        .main-container {
            max-width: 100%;
            padding: 1.5rem 0.45rem 2rem;
        }
        .glass-card {
            padding: 0.65rem;
            border-radius: 16px;
        }
        .kompass-wrapper .kp-shell {
            padding: 10px;
            border-radius: 14px;
        }
        .neelix-shortcode-container:not(.tool-ui-native) .option-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 430px) {
        .main-container {
            padding: 1rem 0.15rem 1.4rem;
        }
        .glass-card {
            padding: 0.35rem;
            border-radius: 12px;
        }
        .kompass-wrapper .kp-shell {
            padding: 8px;
            border-radius: 12px;
        }
    }
