
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    background: #000; 
    color: #c0c0c0; 
    font-family: "Courier New", Courier, monospace; 
    overflow-x: hidden; 
}


.index-body {
    background-image: url("../imagenes/background.gif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


.terminal-box {
    width: 100%;
    max-width: 550px;
    background: rgba(0, 0, 0, 0.9); 
    border: 1px solid #444;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.main-id {
    font-family: "DotGothic16", sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: lowercase;
    text-shadow: 2px 2px 0px #333;
}

.sub-id {
    font-size: 10px;
    color: #555;
    letter-spacing: 1px;
    margin-top: 5px;
}

.ascii-divider {
    color: #333;
    font-size: 12px;
    margin: 10px 0;
    overflow: hidden;
}

.archive-list { 
    margin: 20px 0; 
}

.list-header {
    display: flex;
    font-size: 11px;
    color: #666;
}

.col-id { width: 50px; }
.col-name { flex-grow: 1; }
.col-date { width: 100px; text-align: right; }

.list-row {
    display: flex;
    text-decoration: none;
    color: #c0c0c0;
    padding: 6px 0;
    font-size: 14px;
    transition: background 0.2s;
}

.list-row:hover:not(.locked) {
    background: #c0c0c0;
    color: #000;
}

.list-row.locked { 
    color: #222; 
    cursor: not-allowed; 
}

.terminal-footer { 
    margin-top: 20px; 
    font-size: 12px; 
    color: #444; 
}

.cursor { 
    font-weight: bold; 
    color: #fff; 
    animation: blink 1s infinite; 
}

@keyframes blink { 50% { opacity: 0; } }


.log-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.log-window { 
    width: 100%;
    max-width: 850px; 
    margin: 0 auto; 
    border: 1px solid #222; 
    padding: 30px; 
    background: rgba(5, 5, 5, 0.9); /
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

.log-header { 
    border-bottom: 1px solid #222; 
    padding-bottom: 10px; 
    margin-bottom: 30px; 
    display: flex; 
    justify-content: space-between; 
    font-size: 11px; 
    color: #444;
}

.close-btn { 
    color: #888; 
    text-decoration: none; 
}

.close-btn:hover { 
    background: #fff; 
    color: #000; 
}

.entry-title { 
    font-family: "DotGothic16", sans-serif; 
    color: #fff; 
    font-size: 2.2rem; 
    margin-bottom: 5px; 
    font-weight: 400; 
}


.entry-sub { 
    color: #666; 
    font-size: 10px; 
    margin-bottom: 15px; 
}


.entry-description {
    color: #bbbbbb; 
    font-size: 13px;
    font-style: italic;
    margin-bottom: 30px;
    border-left: 2px solid #444;
    padding-left: 15px;
    line-height: 1.5;
}

.entry-columns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}


#post-body, .column-text {
    color: #eeeeee; 
    line-height: 1.7;
    font-size: 15px; 


@media (max-width: 768px) {
    .entry-columns {
        flex-direction: column;
    }
    .column-media {
        max-width: 100% !important;
    }
}

.column-text {
    flex: 1.5; 
}

.column-media {
    flex: 1; 
    max-width: 320px; 
}

.entry-image { 
    background: transparent;
}

.entry-image img { 
    width: 100%; 
    filter: grayscale(0.5) brightness(0.9); /* Menos gris para que se vea mejor */
    display: block; 
    border: 1px solid #333;
}

.img-caption { 
    display: block; 
    font-size: 9px; 
    color: #444; 
    margin-top: 8px; 
    text-align: right; 
}

.log-footer-note { 
    margin-top: 50px; 
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #444; 
    font-size: 10px; 
}