
.chamok-proof-box {
    position: fixed;
    left: 16px;
    bottom: 16px;
    max-width: 340px;
    padding: 10px 14px;
    background: #006aff;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;

    /* 🔒 NO WORD BREAK FIX */
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

/* animation */
.chamok-proof-box.show {
    animation: chamokSoft 6s ease-in-out forwards;
}

@keyframes chamokSoft {
    0% { opacity: 0; transform: translateY(8px); }
    15% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

/* MOBILE SPLIT SAFE */
@media (max-width: 600px) {
    .chamok-proof-box {
        left: 8px;
        bottom: 18px;
        max-width: 48%;
        font-size: 13px;
        border-radius: 10px;
    }
}
