code[class*=language-],
pre[class*=language-] {
    color: #e6e6e6; /* Bright white text */
    background: 0 0;
    text-shadow: none;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.6; /* Slightly increased for readability */
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

pre[class*=language-] {
    padding: 1em;
    margin: .5em 0;
    overflow: auto;
    border-radius: .3em;
}

:not(pre) > code[class*=language-],
pre[class*=language-] {
    background: #1a1d23; /* Deep black background for maximum contrast */
}

:not(pre) > code[class*=language-] {
    padding: .1em;
    border-radius: .3em;
    white-space: normal;
}

/* Comments - Brightened gray-green */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #8BC34A;
    font-style: italic;
}

/* Punctuation - Bright white */
.token.punctuation {
    color: #d4d4d4;
}

.namespace {
    opacity: 1;
}

/* Tags/Deleted - Bright red */
.token.tag,
.token.deleted {
    color: #ff6b6b;
}

/* Properties/Attributes - Bright coral */
.token.property,
.token.constant,
.token.symbol {
    color: #ff8b6b;
}

/* Numbers/Booleans - Bright orange */
.token.boolean,
.token.number {
    color: #ffb86c;
}

/* Strings/Chars - Bright green */
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #7dff7d;
}

/* Classes - Bright yellow-gold */
.token.class-name {
    color: #ffd700;
}

/* Functions - Bright blue */
.token.function {
    color: #61afff;
}

/* Keywords - Bright magenta/purple */
.token.keyword {
    color: #dd7dff;
}

/* Operators/Entities - Bright cyan */
.token.operator,
.token.entity,
.token.url,
.token.variable {
    color: #56d8e0;
}

.language-css .token.string,
.style .token.string {
    color: #56d8e0;
}

/* Atrules/Attr-values - Bright yellow */
.token.atrule,
.token.attr-value {
    color: #ffeb3b;
}

/* Regex/Important - Bright orange-red */
.token.regex,
.token.important {
    color: #ff9d00;
}

.token.important,
.token.bold {
    font-weight: 700;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}