/* ===== Black & White Memorial Film (Minimal Overlay) ===== */

/* ทำทุกอย่างเป็นขาวดำ */
html {
    filter: grayscale(100%);
}

/* ใส่ฟิล์มสีดำโปร่งบาง ๆ */
html::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    /* ปรับความทึบได้ 0.10–0.50 */
    pointer-events: none;
    /* เพื่อไม่ให้ปิดการคลิก */
    z-index: 999999;
}

/* โลโก้ยังให้สีเดิมได้ (ถ้าต้องการ) */
img.logo,
.no-filter {
    filter: none !important;
}