html {
    color: #1a1a1a !important;
    background-color: #ffe600 !important;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a !important;
    background-color: #ffe600 !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;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 15px;
}

.logo-mp {
    display: block;
    width: 142px;
    height: auto;
}

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

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

/* Tagline */
.vault-tagline {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.95rem;
    font-weight: 400;
    color: #1a1a1a;
    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: rgba(0, 0, 0, 0.55);
    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: #3483fa !important;
    letter-spacing: 0.3px;
}

.vault-brand-logo {
    width: 100px;
    filter: invert(1);
}

/* Responsive */
@media (max-width: 768px) {
    .logo-prefix,
    .logo-main {
        font-size: 2rem;
    }

    .logo-mp {
        width: 116px;
    }

    .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: rgba(0, 0, 0, 0.35);
    border-radius: 25px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}
