/* Popup Overlay */
#uniquePopupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 16, 40, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
#uniquePopupBox {
    background: #0f1724;
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid #26314f;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Popup Text */
#uniquePopupBox p {
    color: #e6f0ff;
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 1rem;
}

/* Popup Button */
#uniquePopupBtn {
    padding: 10px 20px;
    border-radius: 8px;
    background: #0d94a9;
    color: black;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

#uniquePopupBtn:hover {
    background: #37a90d;
    color: black;
}
