/* 灰暗背景（更暗 + 模糊） */
#site-popup-overlay {
    display: none;
    position: fixed;
    z-index: 9998;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);  /* ⭐ 更暗 */
    backdrop-filter: blur(4px);     /* ⭐ 模糊背景 */
}

/* 大型彈窗 */
#site-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    width: 95%;
    max-width: 800px;              /* ⭐ 寬度 800px */
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 50px rgba(0,0,0,0.45);
}

/* 彈窗內容 */
.popup-content {
    position: relative;
}

/* RWD 圖片 */
.popup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 關閉按鈕（大顆一點） */
#popup-close {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 8px #000;
    cursor: pointer;
    z-index: 10;
}

/* 手機版：80% 寬 or 100% 自動 */
@media(max-width: 500px){
    #site-popup {
        max-width: 90%;
    }
    #popup-close {
        font-size: 32px;
        right: 12px;
    }
}
