/* --- DIARY: CLOSE FRIENDS VIBE --- */

.bg-texture {
    position: fixed;
    inset: 0;
    background: url("https://i.pinimg.com/originals/0b/2c/e3/0b2ce38d1e7fc53d06337d99fd253b25.jpg") repeat;
    background-size: 400px;
    z-index: 1;
    opacity: 0.8 !important; /* Bajamos un pelín para que el negro del fondo lo ensucie */
    filter: brightness(0.4) contrast(1.2) grayscale(1);
    pointer-events: none;
}

.diary-wrapper {
    max-width: 700px; /* Más estrecho = más íntimo */
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header más minimalista */
.personal-header {
    margin-bottom: 50px;
    font-size: 0.7rem;
    color: #444;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 6px; height: 6px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff0000;
}

/* Las "entradas" del listado */
.post-card {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.4s;
}

.post-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 0, 0, 0.2);
}

.post-title {
    font-size: 1.2rem;
    color: #eee;
    font-weight: normal;
    font-family: "Courier New", monospace;
}

.post-meta {
    font-size: 0.7rem;
    color: #ff0000;
    opacity: 0.5;
    margin-top: 5px;
}

/* EL CONTENIDO: Aquí es donde se siente "Close Friends" */
.diary-entry-content {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
    background: rgba(10, 10, 10, 0.9);
    padding: 40px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    
    /* Antidesborde */
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

/* Animación de entrada */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Botones menos "gritones" */
.read-more, .btn-hoja {
    background: transparent;
    border: none;
    color: #ff0000;
    font-family: "Courier New", monospace;
    font-size: 0.7rem;
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.6;
}

.read-more:hover, .btn-hoja:hover {
    opacity: 1;
    letter-spacing: 1px;
}

.hidden { display: none !important; }