    /* Der Hauptcontainer im Archiv-Look */
    .ttx-archive-wrap {
        background-color: #1a1a1a;
        color: #d1d1d1;
        font-family: 'Courier New', Courier, monospace;
        border: 2px solid #9c4d6b;
        max-width: 650px;
        margin: 40px auto;
        padding: 30px;
        position: relative;
        box-shadow: 10px 10px 0px #000;
    }

    /* Akzent-Streifen oben */
    .ttx-archive-top-line {
        height: 10px;
        background: #9c4d6b;
        margin: -30px -30px 25px -30px;
        border-bottom: 2px solid #000;
    }

    .ttx-archive-header {
        text-align: center;
        border: 2px solid #9c4d6b;
        padding: 25px;
        margin-bottom: 25px;
        background: #111;
    }

    .ttx-archive-header h1 {
        color: #9c4d6b;
        margin: 0;
        font-size: 30px;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-weight: 900;
    }

    .ttx-archive-sub {
        color: #00ffff;
        font-size: 10px;
        letter-spacing: 3px;
        display: block;
        margin-top: 8px;
        border-top: 1px solid #1a3a3a;
        padding-top: 5px;
    }

    /* Die große Scrollbox für das Lexikon-Intro */
    .ttx-archive-content {
        height: 480px; 
        overflow-y: auto;
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
        padding-right: 15px;
        hyphens: auto;
        scrollbar-width: thin;
        scrollbar-color: #333 #141414;
    }
    
    /* Minimalistische, dunkle Scrollbar */
    .ttx-archive-content::-webkit-scrollbar { width: 4px; }
    .ttx-archive-content::-webkit-scrollbar-track { background: #141414; }
    .ttx-archive-content::-webkit-scrollbar-thumb { background: #333; border-radius: 0; }

    .ttx-archive-content b { color: #9c4d6b; }
    .ttx-archive-content i { color: #00ffff; font-style: normal; }

    /* Zensur-Effekt */
    .ttx-redacted {
        background-color: #000;
        color: #000;
        padding: 0 3px;
        transition: color 0.5s;
        cursor: help;
    }
    .ttx-redacted:hover { color: #9c4d6b; }

    /* Footer */
    .ttx-archive-footer {
        margin-top: 25px;
        border-top: 1px dashed #9c4d6b;
        padding-top: 20px;
        font-size: 11px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .ttx-archive-btn {
        border: 1px solid #9c4d6b;
        padding: 8px 15px;
        text-decoration: none;
        color: #9c4d6b;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.3s;
    }
    .ttx-archive-btn:hover { color: #00ffff; border-color: #00ffff; }