/* Importando fontes (opcional, mas pode manter no HTML para performance) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* Reset Básico */
body {
    background-color: #111214; /* Cor fallback caso o JS não carregue */
    color: white;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Efeito de Grid no Fundo (Background Pattern) */
.bg-grid {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* Scrollbar personalizada (Estilo Webright) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #111214;
}
::-webkit-scrollbar-thumb {
    background: #333438;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ffcf30;
}

/* Animação de Flutuação */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}