html {
    scroll-behavior: smooth;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
textarea::-webkit-scrollbar {
    width: 8px;
}
textarea::-webkit-scrollbar-track {
    background: #020617;
    border-radius: 6px;
}
textarea::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 6px;
    border: 2px solid #020617;
}
textarea::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;
}
.prose h2 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.prose p {
    margin-bottom: 1.25rem;
}
/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Ensure code blocks don't wrap terribly on mobile */
pre code {
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
}
