body {
    margin: 0;
    background: black;
    font-family: monospace;
    color: #00ffff;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,0,255,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,255,0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}
.boot-screen {
    padding: 40px;
    color: #00ff00;
    font-size: 14px;
    white-space: pre-wrap;
}

.hidden {
    display: none;
}
.window {
    width: 800px;
    margin: 80px auto;
    background: #0a0a14;
    border: 2px solid #ff00ff;
    box-shadow:
        0 0 20px #ff00ff,
        0 0 50px #00ffff inset;
    position: relative;
    z-index: 1;
}
.window-header {
    background: #111;
    padding: 12px 20px;
    border-bottom: 1px solid #ff00ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.content {
    padding: 30px;
}

h1 {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.tagline {
    color: #00ffff;
}

.info-grid {
    margin: 20px 0;
}

.online {
    color: #00ff00;
    text-shadow: 0 0 8px #00ff00;
}

.posts {
    margin-top: 30px;
    padding: 20px;
    background: black;
    border: 1px solid #00ffff;
    box-shadow: inset 0 0 15px rgba(0,255,255,0.2);
}
