.fdv-reflection-popup {
    margin-top: 10px;
    max-width: 420px;
    background: linear-gradient(180deg, #141414, #0b0b0b);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    animation: fdvFadeIn 0.18s ease-out;
}

.fdv-popup-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 6px;
}

.fdv-popup-excerpt {
    font-size: 14px;
    line-height: 1.45;
    color: #cfcfcf;
    opacity: 0.95;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes fdvFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}