@charset "UTF-8";
body { background: #f2e9ed; color: #5e454f; font-family: 'Courier New', monospace; padding: 0; margin: 0; word-wrap: break-word; overflow-wrap: break-word; }
.container { 
    max-width: 1650px; 
    width: 95%; 
    margin: 0 auto; 
    background: rgba(255, 255, 255, 0.5); 
    padding: 10px 0 60px 0; 
    border-left: 3px solid #000; 
    border-right: 3px solid #000; 
    box-shadow: 0 15px 40px rgba(94, 69, 79, 0.1); 
    min-height: 100vh; 
    box-sizing: border-box; 
    display: flex;
    align-items: flex-start;
}
header { position: fixed; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1650px; height: 75px; z-index: 10000; background: #000; padding: 0 15px; display: space-between; align-items: center; border-bottom: 3px solid #ffb3d9; box-sizing: border-box; display: flex; justify-content: space-between; }
.logo-terminal { color: #00ff41 !important; text-decoration: none; font-weight: 900; text-shadow: 0 0 5px #00ff41;  font-size: 1.1em;
    letter-spacing: -1px;
    display: flex;
    align-items: center; } 

header nav { display: flex; align-items: center; gap: 15px; }
header nav a { color: #ffb3d9 !important; text-decoration: none; font-weight: 900; font-size: 0.75em; text-transform: uppercase; }
footer { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1650px; height: 60px; z-index: 10000; background: #000; color: #fff; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; border-top: 3px solid #ffb3d9; box-sizing: border-box; font-size: 0.65em; font-weight: 900; }
.main-viewport, .side-pulse {
    height: calc(100vh - 135px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none; 
}
.main-viewport::-webkit-scrollbar, 
.side-pulse::-webkit-scrollbar { 
    width: 0px; 
    background: transparent; 
    display: none; 
}
.main-viewport {
    flex: 3;
    padding: 4px 4px 10px 4px;
    box-sizing: border-box;
    border-right: 2px double #ffb3d9;
    position: sticky;
    top: 75px;
}
.side-pulse {
    flex: 1;
    padding: 40px 20px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.02);
}
.post-touch-zone, .monolith-welcome, .side-pulse, .pulse-item { 
    display: block; 
    cursor: pointer; 
    position: relative; 
    user-select: none; 
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;
    transition: background 0.3s ease; 
}
.post-touch-zone:hover { background: rgba(255,179,217,0.05); }
.post-cut {
    max-height: 145px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-cut::after {
    content: ""; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 100px;
    background: linear-gradient(to bottom, rgba(242,233,237,0), #f2e9ed);
    transition: opacity 0.4s ease; pointer-events: none;
}
.post-check:checked ~ .post-touch-zone .post-cut,
.post-check:checked ~ .post-cut { max-height: 20000px; }
.post-check:checked ~ .post-touch-zone .post-cut::after,
.post-check:checked ~ .post-cut::after { opacity: 0; }
.content { color: #000 !important; font-size: 1.25em !important; line-height: 1.1; }

img { display: block; margin: 0 auto 20px auto; max-width: 100%; border: 2px solid #000; }
.admin-links a { color: blue; text-decoration: underline; }
.post-footer { margin-top: 20px; position: relative; z-index: 100; }

.pulse-item { margin-bottom: 20px; border-bottom: 1px dashed #ffb3d9; padding-bottom: 15px; }
.pulse-item a { color: #5e454f; text-decoration: none; font-weight: 900; font-size: 0.9em; }
.pulse-item small { display: block; color: #888; font-size: 0.75em; margin-top: 5px; }

.cursor { display: inline-block; width: 12px; height: 0.9em; background: #00ff41; animation: blink 1s step-end infinite; vertical-align: middle; margin-left: 8px; box-shadow: 0 0 6px #00ff41; }
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 1000px) {
    .container { flex-direction: column; padding-top: 75px; }
    .main-viewport, .side-pulse { width: 100%; height: auto; position: static; border: none; }
}
