    /* Styling für den Weihnachtsbaum */
    #christmas-tree {
        position: fixed;
        bottom: 50px;
        right: 40px;
        width: 320px;
        height: 400px;
        z-index: 2000;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    #christmas-tree:hover {
        transform: scale(1.1);
    }

    .tree-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

    /* GROSSER BAUM - Dreiecke */
    .tree {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 120px solid transparent;
        border-right: 120px solid transparent;
        border-bottom: 200px solid #0a5c36;
    }

    .tree:before {
        content: '';
        position: absolute;
        top: -70px;
        left: -90px;
        width: 0;
        height: 0;
        border-left: 90px solid transparent;
        border-right: 90px solid transparent;
        border-bottom: 150px solid #0a5c36;
    }

    .tree:after {
        content: '';
        position: absolute;
        top: -130px;
        left: -60px;
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-bottom: 100px solid #0a5c36;
    }

    /* Stamm */
    .trunk {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 60px;
        background-color: #8B4513;
        z-index: 1;
    }

    /* Schmuckkugeln - für großen Baum */
    .ornament {
        position: absolute;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        z-index: 2;
        box-shadow: 0 0 8px rgba(0,0,0,0.3);
    }

    .ornament.red { background-color: #e74c3c; }
    .ornament.blue { background-color: #3498db; }
    .ornament.yellow { background-color: #f1c40f; }
    .ornament.gold { background-color: gold; }
    .ornament.silver { background-color: silver; }
    .ornament.purple { background-color: #9b59b6; }

    /* Stern */
    .star {
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        color: gold;
        font-size: 80px;
        z-index: 3;
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.9);
        animation: twinkle 2s infinite alternate;
    }

    @keyframes twinkle {
        from { opacity: 0.8; transform: translateX(-50%) scale(0.95); }
        to { opacity: 1; transform: translateX(-50%) scale(1.05); }
    }

    /* Styling für den Spruch */
    .saying-box {
        position: absolute;
        bottom: 420px;
        right: 20px;
        width: 280px;
        background-color: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        border: 2px solid #0a5c36;
        text-align: center;
        display: none;
        z-index: 1001;
    }

    .saying-box.show {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    .saying-box:after {
        content: '';
        position: absolute;
        top: 100%;
        right: 40px;
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid rgba(255, 255, 255, 0.98);
    }

    .saying-text {
        font-style: italic;
        color: #1a3c34;
        margin-bottom: 12px;
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .saying-author {
        font-size: 0.95rem;
        color: #666;
        font-weight: bold;
    }

    .close-btn {
        position: absolute;
        top: 8px;
        right: 10px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #666;
        padding: 5px 10px;
    }

    .close-btn:hover {
        color: #000;
        transform: scale(1.2);
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Text unter dem Baum */
    .click-text {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        color: #0a5c36;
        font-size: 0.7em;
        font-weight: bold;
        text-align: center;
        white-space: nowrap;
        padding: 5px 15px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        border: 2px solid #0a5c36;
        z-index: 10;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .click-text:hover {
        background-color: #0a5c36;
        color: white;
        transform: translateX(-50%) scale(1.05);
    }

    @media (max-width: 768px) {
        .click-text {
            font-size: 14px;
            bottom: -30px;
            padding: 4px 10px;
        }
    }
    
    
        /* Responsive Anpassungen */
        @media (max-width: 768px) {
            #christmas-tree {
                width: 150px;
                height: 200px;
                bottom: 20px;
                right: 40px; /*right*/
            }
            
            .tree {
                border-left-width: 50px;
                border-right-width: 50px;
                border-bottom-width: 90px;
            }
            
            .tree:before {
                top: -30px;
                left: -40px;
                border-left-width: 40px;
                border-right-width: 40px;
                border-bottom-width: 70px;
            }
            
            .tree:after {
                top: -60px;
                left: -30px;
                border-left-width: 30px;
                border-right-width: 30px;
                border-bottom-width: 50px;
            }
            
            .trunk {
                width: 15px;
                height: 25px;
            }
            
            .ornament {
                width: 12px;
                height: 12px;
            }
            
            .star {
                top: -90px;
                font-size: 40px;
            }
            
            .saying-box {
                width: 180px;
                bottom: 210px;
                right: 10px; /**/
                padding: 12px;
            }
            
            .saying-text {
                font-size: 0.9rem;
            }
        }