.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2c2c54;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: #fff;
    max-width: 90%;
    width: 500px;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    max-height: 80%;
    overflow-y: auto;
}

.popup-content h2 {
    margin-top: 0;
    color: #f4d03f;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}

.popup-content h3 {
    color: #f4d03f;
    margin-top: 20px;
    font-size: 1.2rem;
}

.popup-content p {
    margin: 10px 0;
    line-height: 1.6;
    color: #dcdde1;
}

.popup-content a {
    color: #f4d03f;
    text-decoration: underline;
}

.popup-content a:hover {
    color: #d4ac0d;
}

.popup-content button {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    font-size: 1rem;
    background: #f4d03f;
    border: none;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    transition: background 0.3s;
}

.popup-content button:hover {
    background: #d4ac0d;
}

/* Responsive Anpassungen */
@media (max-width: 480px) {
    .popup-content {
        width: 90%;
        padding: 15px;
        font-size: 0.9rem;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }

    .popup-content h3 {
        font-size: 1rem;
    }
}
