@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes glitch {
    0%, 100% { transform: translate(0); text-shadow: 1px 1px #f00, -1px -1px #0f0; }
    50% { transform: translate(-1px, 1px); text-shadow: -1px -1px #f00, 1px 1px #0f0; }
}

:root {
    --primary: #33ff33;
    --bg: #0a0a0a;
    --overlay: rgba(0, 20, 0, 0.92);
    --text: #b4ffb4;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Courier New", "Lucida Console", Monaco, monospace;
    margin: 0;
    cursor: default;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    padding: 40px 20px;
    border: 2px solid var(--primary);
    background: var(--overlay);
    margin-bottom: 30px;
}

.header h1 {
    animation: glitch 3s infinite;
    font-size: 2em;
    margin: 0;
}

.ascii-art {
    font-family: monospace;
    white-space: pre;
    text-align: center;
    margin: 20px 0;
    font-size: 12px;
    line-height: 1.2;
    color: var(--primary);
}

.post {
    background: var(--overlay);
    border: 2px solid var(--primary);
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(51, 255, 51, 0.1);
}

.post-title {
    animation: glitch 3s infinite;
    font-size: 1.8em;
    margin-bottom: 1em;
    color: var(--primary);
}

.post-date {
    color: #88ff88;
    margin-bottom: 2em;
    font-size: 0.9em;
}

.post-content {
    letter-spacing: 0.3px;
}

.highlight {
    background: rgba(0, 30, 0, 0.6) !important;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
    overflow-x: auto;
}

.highlight pre {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

a {
    color: #66ff66;
    text-decoration: none;
    border-bottom: 1px solid rgba(102, 255, 102, 0.3);
    transition: border-bottom-color 0.2s;
}

a:hover {
    border-bottom-color: #66ff66;
}

h2, h3, h4 {
    color: var(--primary);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

ul, ol {
    padding-left: 1.5em;
    margin: 1em 0;
}

li {
    margin-bottom: 0.5em;
}

blockquote {
    border-left: 3px solid var(--primary);
    margin: 1.5em 0;
    padding-left: 1em;
    font-style: italic;
    color: #88ff88;
}

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(51, 255, 51, 0.1);
    animation: scanline 8s linear infinite;
    z-index: 102;
    pointer-events: none;
}