body {
    font-family: 'Be Vietnam Pro', sans-serif;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #1a202c; /* Equivalent to text-gray-900 */
}

.prose p {
    line-height: 1.75;
}

.prose a {
    color: #2563eb; /* Equivalent to text-blue-600 */
    transition: color 0.2s ease-in-out;
}

.prose a:hover {
    color: #1d4ed8; /* Equivalent to text-blue-700 */
}

.prose strong {
    color: #1a202c;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background-image: linear-gradient(to right, #2563eb, #3b82f6);
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 14px 0 rgba(0, 118, 255, 0.39);
    cursor: pointer;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 118, 255, 0.5);
}

.gallery-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.1);
}

.tag-badge {
    display: inline-block;
    background-color: #e5e7eb; /* gray-200 */
    color: #4b5563; /* gray-600 */
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
    text-decoration: none;
}

.tag-badge:hover {
    background-color: #d1d5db; /* gray-300 */
    color: #1f2937; /* gray-800 */
}
