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

.popup-content {
    background: #060915;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    color: #fff;
}

.popup-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.popup-content h2 {
    margin: 0 0 10px;
}

.popup-content p {
    margin: 0 0 20px;
}

.popup-content button {
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    background-color: #6ab04c;
    color: #fff;
    border: none;
    border-radius: 5px;
}
