.popup-overlay {
    display: none; /* Standardmäßig versteckt */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dunkler, leicht transparenter Hintergrund */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Stellt sicher, dass das Popup über allem liegt */
}

.popup-content {
    background-color: #ffffff; /* Weißer Hintergrund */
    padding: 25px;
    border-radius: 15px; /* Abgerundete Ecken */
    text-align: center;
    max-width: 90%; /* Max. Breite für Responsive */
    width: 400px; /* Feste Breite für Desktop */
    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: #1E3A72; /* Blau für Text */
    font-size: 1.1em;
    line-height: 1.5;
    margin-bottom: 10px;
}

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

.popup-close-button {
    background-color: #1E3A72; /* Blauer 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: #0d285a; /* Dunkleres Blau beim Hover */
}

/* 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;
    }
}