/* --- Verdict Seal (Dynamic Fun Rating) --- */
.verdict-seal {
    position: absolute;
    top: -10px;
    right: 20px;
    min-width: 80px;
    min-height: 80px;
    padding: 10px;
    border: 4px solid rgba(220, 38, 38, 0.8);
    border-radius: 4px;
    color: rgba(220, 38, 38, 0.9);
    font-family: "Noto Serif TC", "DFKai-SB", "KaiTi", "楷体", serif;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    transform: rotate(10deg);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
    pointer-events: none;
    /* Let clicks pass through */
    white-space: pre-wrap;
    mix-blend-mode: multiply;
    /* Make it look like ink on paper */
    font-size: 22px;
    letter-spacing: 1px;
    white-space: normal;
    word-break: break-all;
    line-height: 1.15;
}

.verdict-seal[data-len="1"] {
    font-size: 34px;
}

.verdict-seal[data-len="2"] {
    font-size: 30px;
}

.verdict-seal[data-len="3"],
.verdict-seal[data-len="4"] {
    font-size: 24px;
}

.verdict-seal[data-len="5"],
.verdict-seal[data-len="6"] {
    font-size: 19px;
}

@media (max-width: 600px) {
    .verdict-seal {
        top: -6px;
        right: -4px;
        transform: scale(0.72) rotate(12deg);
    }
}
