body {
    background-color: #0a0a0a; /* fallback */
    background-image: url('../images/static-subtle.png');
    animation: flickerStatic 1.5s steps(5) infinite;
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: auto;
    color: #ccc;
    font-family: monospace;
    line-height: 1.5;
    padding: 40px;
    font-size: clamp(13px, 1.8vw, 18px);
    text-shadow: 0 0 0.3px #fff2, 0 0 1px #fff1;
}
.post-meta {
    color: #777;
    font-size: 0.9em;
    text-shadow: 0 0 1px #fff1;
}

@keyframes flickerStatic {
    0% { background-position: 0 0; }
    25% { background-position: 1px 0; }
    50% { background-position: -1px 1px; }
    75% { background-position: 0 -1px; }
    100% { background-position: 1px 1px; }
}
a {
    color: #ff7b7b;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    animation: flicker 0.2s infinite alternate;
}
@keyframes flicker {
    0% { opacity: 1; }
    100% { opacity: 0.6; }
}
h1 {
    font-size: clamp(22px, 5vw, 32px);
    line-height: 1.2;
    margin: 0.5em 0;
    color: #fff;
    text-shadow: 0 0 1px #fffc, 0 0 2px #fffa;
}
h2 {
    font-size: clamp(18px, 4vw, 26px);
    line-height: 1.3;
    margin: 0.5em 0;
    color: #eee;
    text-shadow: 0 0 1px #fffc, 0 0 2px #fffa;
}
h3 {
    font-size: clamp(16px, 3vw, 22px);
    line-height: 1.4;
    margin: 0.5em 0;
    color: #ccc;
    text-shadow: 0 0 1px #fffc, 0 0 2px #fffa;
}
img {
    filter: contrast(1.15) brightness(1.1) saturate(1.1);
}
.ascii-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0;       /* Remove extra bottom margin */
    padding-bottom: 0;
}
.ascii-header {
    transform: scale(1.0);        /* Scales block down on smaller viewports */
    transform-origin: top center;  /* Keeps it anchored properly */
    font-family: monospace;
    white-space: pre;
    margin: 0;              /* Collapse internal spacing */
    padding: 0;
    display: inline-block;  /* Helps with line-height tweaks */
    line-height: 1;
    font-weight: bold;
    text-shadow: 0 0 2px #fff, 0 0 5px #ff3c3c;
}
.menu-bar {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 1em;
}
.post-title {
    display: block;
    margin-left: 1.5em;  /* Adjust as needed */
    color: #ccc;         /* Optional: make it subtler */
    white-space: normal; /* Ensures wrapping still works */
    line-height: 1.4; /* or 1.3, your call */
}
.filebox {
    border: 1px solid #ff3c3c;
    padding: 20px;
    margin: 40px auto;
    background-color: rgba(17, 17, 17, 0.75);
    width: 90%; /* or 70%, 60%, tweak as needed */
    max-width: 1000px; /* keeps it from stretching too far on ultra-wide screens */
    box-sizing: border-box;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.cli-output {
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #444;
    padding: 20px;
    margin: 40px auto;
    width: 90%;
    max-width: 1000px;
    font-family: monospace;
    line-height: 1.6;
    box-shadow: 0 0 10px #000a;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background-image:
    repeating-linear-gradient(rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 2px, transparent 2px, transparent 4px);
    z-index: 9999;
    mix-blend-mode: multiply;
}
