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

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

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200%); }
}

:root {
    --primary: #33ff33;
    --bg: #0a0a0a;
    --overlay: rgba(0,20,0,.8);
}

body {
    background: var(--bg);
    color: var(--primary);
    font-family: "Lucida Console", Monaco, monospace;
    margin: 0;
    cursor: crosshair;
}

.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;
}

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

.subtitle {
    margin: 20px 0;
    font-size: 16px;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    padding: 10px;
}

.post {
    background: var(--overlay);
    border: 2px solid var(--primary);
    padding: 20px;
    margin: 20px 0;
}

.post-title {
    animation: glitch 3s infinite;
}

.post-title a {
    color: var(--primary);
    text-decoration: none;
}

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

.marquee {
    margin: 20px 0 0 0;
    background: var(--overlay);
    padding: 10px;
    border: 1px solid var(--primary);
    overflow: hidden;
    white-space: nowrap;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

.status-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 5px;
    font-size: 12px;
    display: flex;
    justify-content: space-around;
    color: var(--bg);
}