html {
    color: #e4e4e4 !important;
    background-color: #000000 !important;
}

body {
    font-family: 'Inter', sans-serif;
    color: #e4e4e4 !important;
    background-color: #000000 !important;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vault Container - Centrado vertical y horizontal */
.vault-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}

/* Logo/Título */
.vault-logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 15px;
}

.logo-prefix {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.logo-main {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Tagline */
.vault-tagline {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.95rem;
    font-weight: 400;
    color: #e4e4e4;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Integration Info */
.vault-integration {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 400;
    color: #888888;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

/* Status Indicator */
.vault-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 400;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    display: inline-block;
    flex-shrink: 0;
}

.status-dot.active {
    background-color: #1d9032;
}

.status-dot.degraded {
    background-color: #d4a017;
}

.status-dot.down {
    background-color: #7d0f00;
}

.status-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: #9d7ed8 !important;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-prefix,
    .logo-main {
        font-size: 2rem;
    }
    
    .vault-tagline {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .vault-integration {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
    
    .status-text {
        font-size: 0.85rem;
    }
    
    .status-dot {
        width: 8px;
        height: 8px;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 25px;
}

::-webkit-scrollbar-thumb {
    background: #e4e4e4;
    border-radius: 25px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #e4e4e4 transparent;
}

