.elementor-12007 .elementor-element.elementor-element-5fd5f1a{--display:flex;--margin-top:200px;--margin-bottom:200px;--margin-left:200px;--margin-right:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12007 .elementor-element.elementor-element-5fd5f1a{--margin-top:100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for html, class: .elementor-element-a230b16 *//* CSS Variablen für die App */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #ffd32a;
    --bg-color: #f0f4f8;
    --card-bg: #ffffff;
    --text-color: #2d3436;
    --correct-color: #00b894;
    --wrong-color: #d63031;
    --shadow: 0 10px 25px rgba(108, 92, 231, 0.1);
}

/* Feuerwerk Canvas bleibt fixiert */
#fireworks-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Wrapper für Elementor Integration */
.wollie-embed-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 10px;
    background-color: var(--bg-color);
    clear: both;
    min-height: fit-content;
}

/* Haupt-App Container */
#wollie-app {
    width: 100%;
    max-width: 550px;
    background: var(--card-bg);
    border-radius: 35px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    border: 6px solid #ffffff;
    z-index: 10;
    font-family: 'Nunito', sans-serif;
    color: var(--text-color);
    height: auto !important; /* Erlaubt der Karte mit dem Text zu wachsen */
}

/* Header */
#wollie-app .app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

#wollie-app .category-tag {
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

#wollie-app .stats-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

#wollie-app .wollie-mini {
    font-size: 38px;
    display: inline-block;
    animation: floatingWollie 3s ease-in-out infinite;
}

@keyframes floatingWollie {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

#wollie-app .score-display {
    background: var(--accent-color);
    padding: 8px 16px;
    border-radius: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 0px #e1b100;
    font-size: 1.1rem;
}

/* Aufgaben Text */
#wollie-app .situation-text {
    font-size: 1.45rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 25px;
    min-height: 60px; /* Reduziert, damit es flexibler ist */
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Neu: Frage-Prompt über den Antworten */
#wollie-app .question-prompt {
    font-weight: 800;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

/* Antwort-Buttons - Mit Korrekturen für Textumbruch */
#wollie-app .option-button {
    background: #f8f9fa !important;
    border: 2px solid #edf2f7 !important;
    border-radius: 20px !important;
    padding: 18px 22px !important;
    font-size: 1.2rem !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: left !important;
    color: var(--text-color) !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    width: 100% !important;
    display: block !important;
    box-shadow: none !important;
    text-transform: none !important;
    
    /* WICHTIG: Erlaubt Zeilenumbruch in Buttons */
    white-space: normal !important; 
    height: auto !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto;
}

#wollie-app .option-button:hover:not(:disabled) {
    background: #f1f3f5 !important;
    border-color: var(--secondary-color) !important;
    transform: scale(1.01) !important;
}

#wollie-app .option-button.correct {
    background-color: var(--correct-color) !important;
    color: white !important;
    border-color: #00947a !important;
}

#wollie-app .option-button.wrong {
    background-color: var(--wrong-color) !important;
    color: white !important;
    border-color: #b32424 !important;
    opacity: 0.8 !important;
}

/* Feedback Bereich */
#wollie-app .feedback-area {
    margin-top: 20px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#wollie-app #feedback-msg {
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.4;
}

/* Weiter Button */
#wollie-app .next-btn {
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    padding: 16px 45px !important;
    border-radius: 30px !important;
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: 0 6px 0px #4834d4 !important;
    display: none;
    transition: all 0.1s !important;
    text-transform: none !important;
}

#wollie-app .next-btn:active {
    transform: translateY(4px) !important;
    box-shadow: 0 2px 0px #4834d4 !important;
}

/* Fortschrittsbalken */
#wollie-app .progress-bar {
    height: 10px;
    background: #eee;
    border-radius: 5px;
    margin-top: 25px;
    overflow: hidden;
}

#wollie-app .progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.4s ease;
}

/* Mobile Optimierung */
@media (max-width: 480px) {
    #wollie-app {
        padding: 20px;
        border-radius: 25px;
    }
    #wollie-app .situation-text {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    #wollie-app .option-button {
        font-size: 1.05rem !important;
        padding: 14px 18px !important;
    }
}/* End custom CSS */