body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    color: #fff;
}

/* Popup container */
.popup {
    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;
    visibility: visible;
    opacity: 1;
    transition: all 0.4s ease;
    z-index: 999;
}

/* Popup box */
.popup-content {
    background: #1c1c1c;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    animation: fadeIn 0.5s ease;
}

.popup-content img {
    width: 70%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.popup-content h2 {
    margin: 0;
    color: #ff5ec9;
}

.popup-content p {
    font-size: 15px;
    margin: 10px 0 20px;
}

.popup-content button {
    background-color: #ff5ec9;
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.popup-content button:hover {
    background-color: #ff3eb0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Hidden popup */
.popup.hide {
    visibility: hidden;
    opacity: 0;
}

