.popup-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* NEU: SANFTE ABDUNKELUNG (Alpha von 0.8 auf 0.4 reduziert) */
    background-color: rgba(0, 0, 0, 0.2); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; 
}

.popup-content {
    /* WEISS mit 85% Opazität, beibehalten */
    background-color: rgba(255, 255, 255, 0.3); 
    /* Blur-Effekt, beibehalten */
    backdrop-filter: blur(10px); 
    
    padding: 25px;
    border-radius: 15px; 
    text-align: center;
    max-width: 90%; 
    width: 400px; 
    border: 1px solid rgba(255, 255, 255, 0.5); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.popup-logo {
    max-width: 250px; /* Empfohlene Größe für das Logo */
    height: auto;
    margin-bottom: 20px;
}

.popup-text {
    color: #fff; /* Dunkles Anthrazit/Dunkelgrau für Text */
    font-size: 1.1em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.popup-hashtag {
    color: #fff; /* Dunkles Anthrazit/Dunkelgrau für Hashtag */
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 25px;
}

.popup-close-button {
    background-color: #EE7E09; /* Orange für Button-Hintergrund */
    color: #ffffff; /* Weißer Button-Text */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.popup-close-button:hover {
    background-color: #D66D08; /* Etwas dunkleres Orange beim Hover (z.B. 10% dunkler) */
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    .popup-content {
        width: 95%;
        padding: 20px;
    }

    .popup-logo {
        max-width: 200px;
    }

    .popup-text {
        font-size: 1em;
    }

    .popup-hashtag {
        font-size: 1.1em;
    }
}