/* blog.css */

/* Base colors (dark background, light text, purple accents) */
body {
    background-color: #000;
    color: #d1d5db; /* Tailwind gray-300 */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4 {
    color: #c084fc; /* Tailwind purple-400 */
    font-weight: bold;
}

/* Links */
a {
    color: #a855f7; /* Tailwind purple-500 */
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}
a:hover {
    color: #c084fc; /* purple-400 */
}

/* Prose content */
article.prose {
    max-width: 95ch;
    margin-left: auto;
    margin-right: auto;
}

article.prose p {
    margin-bottom: 1.2em;
}
article.prose ul, article.prose ol {
    padding-left: 1.5em;
    margin-bottom: 1.2em;
}
article.prose blockquote {
    border-left: 4px solid #9333ea; /* purple-600 */
    padding-left: 1em;
    color: #9ca3af; /* gray-400 */
    font-style: italic;
    margin: 1.5em 0;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #9333ea; /* purple-600 */
    color: white;
    font-weight: 600;
    padding: 0.75em 1.5em;
    border-radius: 0.5em;
    transition: background-color 0.2s ease-in-out;
    text-decoration: none;
}
.btn:hover {
    background-color: #a855f7; /* purple-500 */
}
