@charset "UTF-8";

/* ============================================
 * Card Page Decoration Style (Shadows & Effects)
 * ============================================ */

/* Image shadow */
.bl_cardPage_img img {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    /* Enhanced shadow on dark bg */
}

/* Title shadow */
.bl_cardPage_ttl {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Text shadow & layout */
.bl_cardPage_txt {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    /* Prevent scrollbar during animation */
}

/* Poem Line Animation */
.bl_cardPage_txt_line {
    display: block;
    opacity: 0;
    transform: translateX(50px);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease-out;
    margin-bottom: 4px;
}

.bl_cardPage_txt_line.is-active {
    opacity: 1;
    transform: translateX(0);
}

/* Modal image shadow */
.bl_card_modal img {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}