#cyberbob-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.98);
    display: none; align-items: center; justify-content: center;
    z-index: 150; overflow: hidden;
}

#ascii-gibberish-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    color: #040; font-size: 8px; line-height: 8px;
    white-space: pre; pointer-events: none; z-index: 1;
}

.modal-content-wrapper {
    background: #000; border: 2px solid #222;
    padding: 3rem; width: 90%; max-width: 400px;
    text-align: center; z-index: 10; border-radius: 10px;
}

.cyberbob-emoji { font-size: 3rem; color: #ffeb3b; margin-bottom: 2rem; }

#cyberbob-pass {
    background: transparent; border: none;
    border-bottom: 2px solid #555; color: #fff;
    width: 100%; padding: 0.5rem; text-align: center;
    font-family: 'Fira Code', monospace; margin-bottom: 1.5rem;
}

#cyberbob-pass:focus { outline: none; border-bottom-color: #ffeb3b; }

#submit-cyberbob {
    background: #000; color: #fff; border: 1px solid #fff;
    padding: 0.5rem 1.5rem; cursor: pointer;
}

#submit-cyberbob:hover { background: #ffeb3b; color: #000; }

/* Contenido de la Base de Datos */
#database-content h3 { color: var(--green); margin-bottom: 1rem; }
#database-content ul { list-style: none; padding: 0; text-align: left; }
#database-content li { margin: 0.8rem 0; font-size: 0.85rem; }
#database-content a { color: var(--amber); text-decoration: none; }
#database-content a:hover { color: var(--green); text-decoration: underline; }

#cyberbob-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.9);
    display: none; align-items: center; justify-content: center;
    z-index: 1000; overflow: hidden;
}

#ascii-gibberish-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    color: #003300; /* Verde muy oscuro de fondo */
    font-size: 10px; line-height: 12px;
    white-space: pre; font-family: 'Fira Code', monospace;
    z-index: 1; pointer-events: none;
    opacity: 0.5;
}

.modal-content-wrapper {
    background: #000; border: 2px solid #333;
    padding: 2rem; width: 95%; max-width: 800px; /* Más ancho para la galería */
    max-height: 90vh; overflow-y: auto;
    text-align: center; z-index: 10; border-radius: 5px;
    position: relative; box-shadow: 0 0 30px #000;
}

/* Galería de Películas */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px; margin-top: 2rem;
}

.movie-card {
    display: flex; flex-direction: column; align-items: center;
    text-decoration: none; transition: transform 0.2s;
}

.movie-card:hover { transform: scale(1.05); }

.movie-card img {
    width: 100%; aspect-ratio: 2/3;
    object-fit: cover; border: 1px solid #444;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.movie-card span {
    font-size: 0.7rem; color: var(--amber); margin-top: 5px;
    text-align: center; font-family: 'Fira Code', monospace;
}
