/* Critical Splash Screen and Global Styles */
body { margin: 0; padding: 0; }

/* Scrollbar minimalista */
* { scrollbar-width: thin; scrollbar-color: #3b82f6 transparent; }
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background-color: rgba(59, 130, 246, 0.3); border-radius: 9999px; }
*::-webkit-scrollbar-thumb:hover { background-color: rgba(59, 130, 246, 0.6); }

#splash-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #020617; /* Dark theme bg */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease-out;
}
.splash-logo {
    width: 80px;
    height: 80px;
    animation: pulse 2s infinite;
    margin-bottom: 20px;
}
.splash-text {
    color: #64748b;
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeText 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes fadeText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
