/* MeritLedger Sovereign CSS | Version 2.0 */

:root {
    --teal: #2dd4bf;
    --slate-900: #020617;
    --slate-800: #0f172a;
    --glass: rgba(15, 23, 42, 0.7);
}

* {
    box-sizing: border-box;
    cursor: crosshair; /* Adds a technical/architect feel */
}

body {
    background-color: var(--slate-900);
    color: white;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    top: 0px !important; /* Fix for Google Translate top bar */
}

/* THE GLASS UI */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(45, 212, 191, 0.1);
}

/* NAVIGATION LINKS */
.nav-link {
    transition: all 0.3s ease;
    padding: 0.8rem 1.2rem;
    border-radius: 0.75rem;
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #94a3b8;
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    background: rgba(45, 212, 191, 0.1);
    color: var(--teal);
    transform: translateX(5px);
}

/* GOOGLE TRANSLATE CUSTOMIZATION */
.goog-te-banner-frame.skiptranslate { display: none !important; }
#google_translate_element select {
    background: #0f172a;
    color: var(--teal);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    outline: none;
    cursor: pointer;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--slate-900); }
::-webkit-scrollbar-thumb { background: var(--slate-800); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }
