body {
    font-family: "Noto Sans TC", sans-serif;
}
.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass-active {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
/* 自定義捲軸樣式，讓寬表格更美觀 */
.custom-scrollbar::-webkit-scrollbar {
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

/* === 「祝福的話語」展開閱讀排版（Markdown 內容） === */
.blessing-prose {
    color: #44403c;            /* stone-700 */
    font-size: 1rem;
    line-height: 1.9;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.blessing-prose > *:first-child { margin-top: 0; }
.blessing-prose > *:last-child { margin-bottom: 0; }
.blessing-prose p { margin: 0 0 1rem; }
.blessing-prose h1,
.blessing-prose h2,
.blessing-prose h3 {
    color: #7e22ce;            /* purple-700 */
    font-weight: 700;
    line-height: 1.4;
    margin: 1.5rem 0 0.75rem;
}
.blessing-prose h1 { font-size: 1.35rem; }
.blessing-prose h2 { font-size: 1.2rem; }
.blessing-prose h3 { font-size: 1.08rem; }
.blessing-prose ul,
.blessing-prose ol {
    margin: 0 0 1rem;
    padding-left: 1.4rem;
}
.blessing-prose li { margin: 0.35rem 0; }
.blessing-prose strong { color: #9333ea; font-weight: 700; }
.blessing-prose em { color: #c2410c; }
.blessing-prose a { color: #9333ea; text-decoration: underline; }
.blessing-prose blockquote {
    margin: 1rem 0;
    padding: 0.75rem 1.25rem;
    border-left: 4px solid #d8b4fe;   /* purple-300 */
    background: #faf5ff;              /* purple-50 */
    border-radius: 0.5rem;
    color: #6b21a8;
}
.blessing-prose hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 1.25rem 0;
}

/* 手機版微調：字級略小、留白更集中 */
@media (max-width: 640px) {
    .blessing-prose { font-size: 0.95rem; line-height: 1.85; }
}
