@keyframes flame-flicker {
    0%, 100% { transform: scale(1) rotate(-3deg); opacity: 1; filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.4)); }
    50% { transform: scale(1.15) rotate(3deg); opacity: 0.9; filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.8)); }
}

.flame-animated {
    animation: flame-flicker 1.2s infinite ease-in-out;
}

/* Base Hyperlink Styling for Markdown & Text Containers */
.prose a {
    color: #2563eb !important; /* Tailwind blue-600 */
    text-decoration: underline;
    text-decoration-color: rgba(37, 99, 235, 0.4);
    text-underline-offset: 4px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.prose a:hover {
    color: #1d4ed8 !important; /* Tailwind blue-700 */
    text-decoration-color: #1d4ed8;
}
