/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a; /* Neutral 950 */
    color: #e5e5e5;
    scroll-behavior: smooth;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #171717;
}
::-webkit-scrollbar-thumb {
    background: #00ff9d;
    border-radius: 4px;
}

/* Utilitários Neon */
.neon-text {
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}
.neon-border:hover {
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
    border-color: #00ff9d;
}

/* Typography para Artigos */
.prose h2 {
    color: #00ff9d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.prose h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.prose p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #d4d4d4;
}
.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.prose a {
    color: #3b82f6;
    text-decoration: underline;
}