body {
    background-color: #01110B;
    /* Obsidian Black */
    color: #ccc;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.ledger-container {
    max-width: 900px;
    margin: 100px auto 50px auto;
    padding: 40px;
    background: rgba(10, 5, 2, 0.4);
    border: 1px solid rgba(230, 179, 74, 0.2);
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

h1 {
    font-family: 'Cinzel', serif;
    color: #e6b34a;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid rgba(230, 179, 74, 0.3);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

h2 {
    font-family: 'Cinzel', serif;
    color: #f9e7b1;
    font-size: 1.2rem;
    margin-top: 50px;
    border-left: 3px solid #50fa7b;
    padding-left: 15px;
    letter-spacing: 1px;
}

p {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.terminal-block {
    background: #000;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #50fa7b;
    margin-bottom: 30px;
    overflow-wrap: break-word;
    /* Ensures long compliance strings break cleanly */
    word-wrap: break-word;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.terminal-block span.highlight {
    color: #e6b34a;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
    font-size: 14px;
    color: #aaa;
}

ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #e6b34a;
    font-size: 12px;
    top: 2px;
}

a {
    color: #e6b34a;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #50fa7b;
}

.back-btn {
    display: inline-block;
    margin-bottom: 30px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #50fa7b;
    cursor: pointer;
    border-bottom: 1px dotted transparent;
    text-transform: uppercase;
    transition: 0.3s;
}

.back-btn:hover {
    color: #e6b34a;
    border-bottom-color: #e6b34a;
}

@media screen and (max-width: 768px) {
    .ledger-container {
        margin: 40px 15px;
        /* Moves gold divider slightly down/closer to content on mobile */
        padding: 25px 20px;
    }

    h1 {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    .terminal-block {
        font-size: 10px;
        /* Scaling down terminal font for mobile symmetry */
    }
}

/* --- ABSOLUTE OVERRIDES: LIGHT THEME BLEED FIX --- */
nav {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    height: 130px !important;
    position: relative;
    z-index: 100;
}

.logo-container {
    display: flex;
    justify-content: center;
    background: transparent !important;
}

.logo-container a {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(230, 179, 74, 0.2)) !important;
    border-bottom: none !important;
    background: transparent !important;
}

.logo-container a:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(230, 179, 74, 0.4)) !important;
}

.logo-container img {
    height: 85px !important;
    width: auto !important;
    display: block;
}