/* ================================================================
   AAMODS CENTRAL REGISTRY - UNIVERSAL GRAV 2.0 / BLADES CSS OVERRIDES
   ================================================================ */

/* 1. HIJACK BLADES CSS AUTO/DARK THEME VARS DIRECTLY */
:root, 
html, 
html.dark, 
html.light, 
[data-theme="dark"], 
[data-theme="light"],
body {
    --background-color: #121212 !important;
    --background: #121212 !important;
    --bg-color: #121212 !important;
    
    --card-background: #1e1e1e !important;
    --background-alt: #1e1e1e !important;
    
    --text-color: #e0e0e0 !important;
    --text: #e0e0e0 !important;
    
    --primary-color: #00ff66 !important;
    --accent-green: #00ff66 !important;
    
    --border-color: #333333 !important;
    --border: #333333 !important;
    --link-color: #1a8cff !important;
    
    /* Spacing Override: Drops wide padding gaps down to low-profile limits */
    --spacing: 0.5rem !important; 
    --block-spacing-vertical: 1rem !important;
}

/* 2. RE-FORCE PURE MONOSPACE OVER THEIR CAL SANS/INTER SYSTEM */
html, body, div, section, article, main, p, li, span, h1, h2, h3, h4, h5, h6, strong {
    font-family: 'Courier New', Courier, monospace !important;
    background-color: transparent;
}

body, html, #page-wrapper, main, .body-wrapper, article, section, #body-wrapper {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* 3. TIGHTEN UP SPROWLING SECTION PADDING BLOAT */
.section, .padding-xl, .padding-lg, .py-12, .my-12 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 4. REPLICATE YOUR REPLICA NAV BAR SPECIFICATIONS */
header.navbar, .navbar, .header-navigation, #header {
    background-color: #1e1e1e !important;
    border-bottom: 1px solid #333333 !important;
    padding: 10px 20px !important;
    margin-bottom: 30px !important;
    max-width: 100% !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

header.navbar h1, .navbar-section h1, header.navbar .logo-text {
    font-size: 20px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    letter-spacing: 1px !important;
}

header.navbar h1 span, .navbar-section h1 span {
    color: #00ff66 !important;
}

header.navbar nav, .navbar-section, .header-navigation nav {
    display: flex !important;
    gap: 20px !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

header.navbar nav a, .navbar-section a, .header-navigation a, .menu-item a {
    color: #e0e0e0 !important;
    font-size: 13px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 4px 8px !important;
    transition: color 0.15s ease-in-out !important;
    border-bottom: 2px solid transparent !important;
    background: transparent !important;
}

header.navbar nav a::before, .navbar-section a::before {
    content: "// " !important;
    color: #555555 !important;
    transition: color 0.15s ease-in-out !important;
}

header.navbar nav a:hover, .navbar-section a:hover, .menu-item a:hover {
    color: #00ff66 !important;
    text-decoration: none !important;
}

header.navbar nav a:hover::before, .navbar-section a:hover::before {
    color: #00ff66 !important;
}

/* 5. 🛠️ ACTIVE NAV LINK CAPSULE STRIPPER OVERRIDE */
header.navbar nav a.active, 
.navbar-section a.active, 
.nav-highlight,
header.navbar nav a[aria-current="page"],
.menu-item a.active,
.menu-item a[aria-current="page"] {
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    color: #00ff66 !important;
    padding: 4px 8px !important;
    border-bottom: 2px solid #00ff66 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

header.navbar nav a.active:hover, 
.navbar-section a.active:hover {
    color: #00ff66 !important;
    background: transparent !important;
}

/* 6. COMPACT CONTENT CARDS & NODE BLOCKS */
.server-card, .card, .bg-gray, .panel, .widget, .content-item {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
    border: 1px solid #333333 !important;
    padding: 20px !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3) !important;
}

/* 7. TITLE ACCENT LEFT-BANDS CODE */
h2 { 
    font-size: 18px !important; 
    border-left: 3px solid #00ff66 !important; 
    padding-left: 10px !important;
    margin-top: 35px !important;
    margin-bottom: 15px !important;
}

.content-item h2, h2::after {
    border-bottom: none !important;
    background: none !important;
    content: none !important;
}

/* 8. CLEAN TERMINAL HYPERLINKS & PRE SNAP BLOCKS */
a {
    color: #1a8cff !important;
    text-decoration: none !important;
}

a:hover {
    text-decoration: underline !important;
}

pre, code, kbd, samp, .code-inline {
    background-color: #0d1117 !important;
    border: 1px solid #333333 !important;
    color: #58a6ff !important;
}
pre { padding: 15px !important; display: block; overflow-x: auto; border-radius: 4px !important; }

