body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { 
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6); 
    border-radius: 5px; 
    border: 2px solid #0f172a; 
}

/* Cursor de Digitação */
.typing-effect::after { 
    content: '|'; 
    animation: blink-caret 0.75s step-end infinite; 
    color: #60a5fa; 
}
@keyframes blink-caret { 50% { opacity: 0; } }

/* Glassmorphism */
.glass {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-nav {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gradiente para Textos */
.text-gradient {
    background: linear-gradient(to right, #60a5fa, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scrollbar do Modal (Idêntico ao principal, mas com a cor de fundo adaptada ao modal) */
.custom-modal-scrollbar::-webkit-scrollbar {
    width: 10px;
}
.custom-modal-scrollbar::-webkit-scrollbar-track {
    background: transparent; 
}
.custom-modal-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    border-radius: 5px;
    border: 2px solid #1e293b; /* Cor da div do modal para dar aquele recorte elegante */
}