/* mourning.css */

/* โหมดไว้ทุกข์ทั้งหน้าเว็บ */
html.mourning-active {
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    transition: filter .3s ease;
}

/* ริบบิ้นดำมุมขวาบน */
html.mourning-active body::after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0) 49%,
        rgba(0,0,0,.8) 50%,
        rgba(0,0,0,.8) 100%
    );
    z-index: 9999;
    pointer-events: none;
}

/* กล่อง Debug มุมซ้ายล่าง เอาไว้ดูสถานะ */
#mourn-debug-box {
    position: fixed;
    left: 10px;
    bottom: 10px;
    font-size: 12px;
    line-height: 1.4;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 10px;
    border-radius: 4px;
    font-family: system-ui, sans-serif;
    z-index: 10000;
    pointer-events: none;
    max-width: 200px;
    white-space: pre-line;
}
